scinote-web/app/javascript/packs/styles/main.scss

43 lines
767 B
SCSS
Raw Normal View History

2017-08-09 18:46:04 +08:00
@import 'constants';
body {
background-color: $color-concrete;
color: $color-emperor;
2017-08-16 19:41:55 +08:00
font-family: "Open Sans", Arial, Helvetica, sans-serif;
2017-08-09 18:46:04 +08:00
font-size: 13px;
}
2017-08-16 19:41:55 +08:00
2017-08-23 17:20:10 +08:00
.btn-primary {
background-color: $color-theme-secondary;
border-color: $primary-hover-color;
margin-right: 7px;
&:hover {
background-color: $primary-hover-color;
}
}
2017-08-16 19:41:55 +08:00
.time-zone-container {
background: $color-white;
position: relative;
2017-08-16 19:41:55 +08:00
ul {
width: 99%;
2017-08-16 19:41:55 +08:00
height: 70vh;
overflow: auto;
position: absolute;
top: 35px;
2017-08-16 19:41:55 +08:00
padding-left: 5px;
background: $color-white;
z-index: 9999;
2017-08-16 19:41:55 +08:00
}
li {
list-style-type: none;
line-height: 1.4 em;
font-size: 1.5 em;
cursor: pointer;
&:hover {
background: $color-gainsboro;
}
}
}