fathom/assets/sass/styles.scss

164 lines
2.1 KiB
SCSS
Raw Normal View History

2016-11-22 16:03:29 +00:00
@import "normalize";
2016-11-23 20:29:54 +00:00
@import "util";
2016-11-24 15:47:33 +00:00
@import "grid";
2016-11-25 12:38:20 +00:00
@import "forms";
2016-11-25 12:49:59 +00:00
@import "tables";
2016-11-22 16:03:29 +00:00
* {
box-sizing: border-box;
}
2016-11-21 12:31:06 +00:00
body {
2016-11-25 12:16:42 +00:00
font-family: Raleway, HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
2016-12-24 08:27:43 +00:00
font-size: 14px;
2016-11-24 15:47:33 +00:00
color: #444;
2016-11-22 16:03:29 +00:00
background: #f5f5f5;
}
h1, h2, h3, h4, h5 {
color: #111;
2016-11-23 20:29:54 +00:00
margin: 0;
2016-11-23 18:40:35 +00:00
small {
font-weight: normal;
font-style: italic;
color: #666;
}
2016-11-21 12:31:06 +00:00
}
2016-12-24 08:27:43 +00:00
h5 {
font-size: 15px;
}
2016-11-22 16:13:37 +00:00
a {
color: #09f;
2016-11-25 12:16:42 +00:00
text-decoration: none;
&:hover,
&:focus {
text-decoration: underline;
}
2016-11-22 16:13:37 +00:00
}
.container {
max-width: 1020px;
padding: 0 20px;
margin-left: auto;
margin-right: auto;
2016-11-22 16:13:37 +00:00
}
2016-11-23 20:29:54 +00:00
.header {
margin: 20px 0;
}
2016-11-25 12:16:42 +00:00
.header-bar {
background: black;
color: white;
margin-bottom: 20px;
2016-11-25 12:16:42 +00:00
padding: 12px 0;
line-height: 32px;
font-weight: bold;
h1, h2, h3, a { color: white; }
.subtitle{
color: #BBB;
margin-left: 10px;
font-size: 20px;
}
}
2016-11-22 16:03:29 +00:00
.block {
width: auto;
background: white;
padding: 20px;
margin-bottom: 20px;
2016-12-10 17:19:44 +00:00
position: relative;
2016-11-22 16:03:29 +00:00
h1, h2, h3 {
2016-11-23 20:29:54 +00:00
margin-bottom: 20px;
2016-11-22 16:03:29 +00:00
}
}
2016-11-21 16:36:25 +00:00
.block-float {
margin-right: 20px;
float: left;
}
2016-12-10 17:19:44 +00:00
.loading-overlay {
position: absolute;
background: rgba( 255, 255, 255, 0.9 );
width: 100%;
height: 100%;
z-index: 10;
font-weight: bold;
margin: -20px;
display: flex;
align-items: center;
justify-content: center;
div {
margin: 50px;
height: 28px;
width: 28px;
animation: rotate 0.8s infinite linear;
border: 8px solid #AAA;
border-right-color: transparent;
border-radius: 50%;
}
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
2016-11-21 16:36:25 +00:00
.count {
2016-11-22 16:13:37 +00:00
font-weight: bold;
font-size: 120%;
2016-11-21 16:36:25 +00:00
}
.notification {
top: 20px;
left: 0;
right: 0;
text-align: center;
position: fixed;
color: white;
div {
color: white;
display: inline-block;
padding: 6px 12px;
background: green;
}
.notification-error {
background: red;
}
}
h1 {
font-size: 28px;
}
h2 {
font-size: 24px;
}
h3{
font-size: 20px;
}
h4 {
font-size: 16px;
}
small {
font-size: 70%;
}
2016-12-04 12:23:09 +00:00
@import "graphs"