34 lines
619 B
SCSS
34 lines
619 B
SCSS
@import 'reset';
|
|
@import 'variables';
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
font-size: 14px;
|
|
background-color: $gray-light;
|
|
}
|
|
|
|
.canvas {
|
|
max-width: 1000px;
|
|
width: 100%;
|
|
min-width: 500px;
|
|
background-color: $gray-mid;
|
|
margin: 0 auto;
|
|
border-radius: 3px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.box {
|
|
border-radius: 0;
|
|
border-width: 3px;
|
|
border-style: solid;
|
|
background-color: $gray;
|
|
border-color: lighten($gray, 20%) darken($gray, 20%) darken($gray, 20%)
|
|
lighten($gray, 20%);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: lighten($gray, 10%);
|
|
}
|
|
}
|