mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
29 lines
501 B
SCSS
29 lines
501 B
SCSS
@import 'constants';
|
|
|
|
body {
|
|
background-color: $color-concrete;
|
|
color: $color-emperor;
|
|
font-family: "Open Sans", Arial, Helvetica, sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.time-zone-container {
|
|
background: $color-white;
|
|
ul {
|
|
width: 100%;
|
|
height: 70vh;
|
|
overflow: auto;
|
|
position: relative;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
li {
|
|
list-style-type: none;
|
|
line-height: 1.4 em;
|
|
font-size: 1.5 em;
|
|
cursor: pointer;
|
|
&:hover {
|
|
background: $color-gainsboro;
|
|
}
|
|
}
|
|
}
|