scratch-paint/src/components/paint-editor/paint-editor.css

90 lines
1.7 KiB
CSS
Raw Normal View History

2017-10-19 16:40:00 -04:00
@import "../../css/colors.css";
@import "../../css/units.css";
2017-08-30 10:50:24 -04:00
.editor-container {
display: flex;
flex-direction: column;
padding: calc(2 * $space);
}
.row {
display: flex;
flex-direction: row;
align-items: center;
}
.editor-container-top {
border-bottom: 1px dashed $ui-pane-border;
padding-bottom: 1rem;
}
2017-09-06 18:01:49 -04:00
.top-align-row {
display: flex;
2017-09-06 18:01:49 -04:00
padding-top:20px;
flex-direction: row;
}
2017-08-30 10:50:24 -04:00
.row + .row {
margin-top: calc(2 * $space);
}
.mod-dashed-border {
border-right: 1px dashed $ui-pane-border;
padding-right: calc(2 * $space);
2017-08-30 10:50:24 -04:00
}
$border-radius: 0.25rem;
.button-group-button {
display: inline-block;
border: 1px solid $ui-pane-border;
2017-08-30 10:50:24 -04:00
border-radius: 0;
border-left: none;
padding: 0.5rem;
}
.button-group-button:active {
background-color: $ui-background-blue;
2017-08-30 10:50:24 -04:00
}
.button-group-button:last-of-type {
2017-08-30 10:50:24 -04:00
border-top-right-radius: $border-radius;
border-bottom-right-radius: $border-radius;
}
.button-group-button:first-of-type {
2017-08-30 10:50:24 -04:00
border-left: 1px solid #ddd;
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
.button-group-button-icon {
width: 1.5rem;
height: 1.5rem;
vertical-align: middle;
}
.mod-mode-tools {
margin-left: calc(2 * $space);
2017-08-30 10:50:24 -04:00
}
2017-09-06 18:01:49 -04:00
.canvas-container {
width: 503px;
height: 403px;
border: 1px solid #e8edf1;
border-radius: .25rem;
2017-09-06 18:01:49 -04:00
position: relative;
overflow: visible;
}
.mode-selector {
display: flex;
margin-right: .5rem;
max-width: 5.5rem;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
justify-content: space-between;
2017-09-06 18:10:19 -04:00
}