67 lines
720 B
SCSS
67 lines
720 B
SCSS
@import "bootstrap-sprockets";
|
|
@import "bootstrap";
|
|
|
|
|
|
/* universal */
|
|
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
section {
|
|
overflow: auto;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.center h1 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* typography */
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
line-height: 1;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
letter-spacing: -2px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
h2 {
|
|
letter-spacing: -1px;
|
|
margin-bottom: 30px;
|
|
color: #777;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1em;
|
|
line-height: 1.7em;
|
|
}
|
|
|
|
/* header */
|
|
|
|
#logo {
|
|
float: left;
|
|
margin-right: 10px;
|
|
font-size: 1.7em;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
letter-spacing: -1px;
|
|
padding-top: 9px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#logo:hover {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|