fathom/assets/sass/styles.scss

77 lines
844 B
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-22 16:03:29 +00:00
2016-11-21 12:31:06 +00:00
body {
font-family: Arial, Verdana, sans-serif;
font-size: 15px;
color: #333;
2016-11-22 16:03:29 +00:00
background: #f5f5f5;
}
h1, h2, h3 {
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
}
table {
border-collapse: collapse;
th, td {
border: 1px solid #eee;
padding: 4px 8px;
}
}
2016-11-21 16:36:25 +00:00
2016-11-22 16:13:37 +00:00
a {
color: #09f;
}
label {
display: block;
}
input {
padding: 8px;
2016-11-23 20:29:54 +00:00
}
button,
input[type="submit"] {
padding: 8px;
cursor: pointer;
2016-11-23 20:29:54 +00:00
&.active {
border: 2px solid black;
}
}
2016-11-22 16:13:37 +00:00
.container {
max-width: 1020px;
padding: 0 20px;
}
2016-11-23 20:29:54 +00:00
.header {
margin: 20px 0;
}
2016-11-22 16:03:29 +00:00
.block {
width: auto;
background: white;
padding: 20px;
margin-bottom: 20px;
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
.count {
2016-11-22 16:13:37 +00:00
font-weight: bold;
font-size: 120%;
2016-11-21 16:36:25 +00:00
}