p5.js-web-editor/styles/components/_preferences.scss

28 lines
592 B
SCSS
Raw Normal View History

2016-06-17 19:37:29 +02:00
.preferences {
background-color: $light-preferences-background-color;
2016-06-17 19:37:29 +02:00
display: none;
2016-06-20 18:45:15 +02:00
font-family: 'Montserrat', sans-serif;
2016-06-17 20:31:33 +02:00
&--selected {
display: flex;
}
2016-06-17 19:37:29 +02:00
}
2016-06-17 20:31:33 +02:00
.preferences__exit-button {
@extend %preferences-button;
2016-06-17 20:31:33 +02:00
margin-left: auto;
background-color: $light-preferences-background-color;
&:hover {
background-color: $light-preferences-background-color;
}
2016-06-17 19:37:29 +02:00
}
2016-06-20 18:45:15 +02:00
.preferences__title-text {
margin-left: #{20 / $base-font-size}rem;
font-size: $menu-font-size;
2016-06-20 19:00:25 +02:00
font-weight: 700;
2016-06-20 18:45:15 +02:00
font-color: white;
height: #{44 / $base-font-size}rem;
line-height: #{44 / $base-font-size}rem;
}