webamp/css/gen-window.css
Jordan Eldredge 7074630713 Format css according to prettier default config
Looks like I had a .editorconfig in the project root (not sure how it
got there) which was git ignored by my ~/.gitignore. It also turns out
that prettier will respect the indent settings in .editorconfig.

This sets my `.editorconfig` to use the Prettier default, checks it in,
and also reformats all the CSS.

Fixes #684
2018-10-20 10:12:19 -07:00

130 lines
1.8 KiB
CSS

#webamp .gen-text-space {
width: 5px;
}
#webamp .gen-text-letter {
height: 7px;
display: inline-block;
}
#webamp .gen-window {
/* Default size */
width: 275px;
height: 116px;
display: flex;
flex-direction: column;
}
#webamp .gen-top {
height: 20px;
display: flex;
flex-direction: row;
}
#webamp .gen-top-left {
width: 25px;
height: 20px;
}
#webamp .gen-top-title {
line-height: 7px;
margin-top: 2px;
/* TODO: This should be a conciquence of the repeating tiles, not hard coded */
padding: 0 3px 0 4px;
}
#webamp .gen-top-left-fill {
flex-grow: 1;
height: 20px;
background-position: left;
}
#webamp .gen-top-right-fill {
flex-grow: 1;
height: 20px;
background-position: right;
}
#webamp .gen-top-left-end {
width: 25px;
height: 20px;
}
#webamp .gen-top-right {
width: 25px;
height: 20px;
}
#webamp .gen-top-right-end {
width: 25px;
height: 20px;
}
#webamp .gen-close {
width: 9px;
height: 9px;
position: absolute;
right: 2px;
top: 3px;
}
#webamp .gen-middle {
flex-grow: 1;
display: flex;
flex-direction: row;
position: relative;
}
#webamp .gen-middle-left {
width: 11px;
}
#webamp .gen-middle-left-bottom {
width: 11px;
height: 24px;
bottom: 0;
position: absolute;
}
#webamp .gen-middle-center {
flex-grow: 1;
position: relative;
}
#webamp .gen-middle-right {
width: 8px;
}
#webamp .gen-middle-right-bottom {
width: 8px;
height: 24px;
bottom: 0;
position: absolute;
}
#webamp .gen-bottom {
height: 14px;
background-repeat: repeat-x;
}
#webamp .gen-bottom-left {
position: absolute;
left: 0;
width: 125px;
height: 14px;
}
#webamp .gen-bottom-right {
position: absolute;
right: 0;
width: 125px;
height: 14px;
}
#webamp .gen-bottom-right #gen-resize-target {
position: absolute;
right: 0;
bottom: 0;
height: 20px;
width: 20px;
}