fathom/assets/sass/styles.scss

83 lines
1.1 KiB
SCSS
Raw Normal View History

2016-11-22 17:03:29 +01:00
@import "normalize";
2016-11-23 21:29:54 +01:00
@import "util";
2016-11-24 16:47:33 +01:00
@import "grid";
2016-11-25 13:38:20 +01:00
@import "forms";
2016-11-25 13:49:59 +01:00
@import "tables";
2016-11-22 17:03:29 +01:00
2016-11-21 13:31:06 +01:00
body {
2016-11-25 13:16:42 +01:00
font-family: Raleway, HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
2016-11-24 16:47:33 +01:00
color: #444;
2016-11-22 17:03:29 +01:00
background: #f5f5f5;
}
h1, h2, h3 {
color: #111;
2016-11-23 21:29:54 +01:00
margin: 0;
2016-11-23 19:40:35 +01:00
small {
font-weight: normal;
font-style: italic;
color: #666;
}
2016-11-21 13:31:06 +01:00
}
2016-11-22 17:13:37 +01:00
a {
color: #09f;
2016-11-25 13:16:42 +01:00
text-decoration: none;
&:hover,
&:focus {
text-decoration: underline;
}
2016-11-22 17:13:37 +01:00
}
.container {
max-width: 1020px;
padding: 0 20px;
margin-left: auto;
margin-right: auto;
2016-11-22 17:13:37 +01:00
}
2016-11-23 21:29:54 +01:00
.header {
margin: 20px 0;
}
2016-11-25 13:16:42 +01:00
.header-bar {
background: black;
color: white;
margin-bottom: 40px;
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 17:03:29 +01:00
.block {
width: auto;
background: white;
padding: 20px;
margin-bottom: 20px;
h1, h2, h3 {
2016-11-23 21:29:54 +01:00
margin-bottom: 20px;
2016-11-22 17:03:29 +01:00
}
}
2016-11-21 17:36:25 +01:00
.block-float {
margin-right: 20px;
float: left;
}
2016-11-21 17:36:25 +01:00
.count {
2016-11-22 17:13:37 +01:00
font-weight: bold;
font-size: 120%;
2016-11-21 17:36:25 +01:00
}