You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
537 B
SCSS
41 lines
537 B
SCSS
7 years ago
|
@import url(../css/normalize.css);
|
||
|
|
||
|
@import '_settings';
|
||
|
|
||
|
h1 {
|
||
|
margin: .67em;
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
font-family: $body-font-family;
|
||
|
background: $light-gray;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
|
||
|
div {
|
||
|
background: #ffffff;
|
||
|
border-left: 5px solid $primary-color;
|
||
|
padding: 15px 15px 15px 15px;
|
||
|
margin: 10px 10px 10px 10px;
|
||
|
box-shadow: 0 1px 1px 0 rgba(50,50,50,0.15);
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
display: block;
|
||
|
margin-bottom: .67em;
|
||
|
padding-left: .67em;
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
margin-bottom: .67em;
|
||
|
}
|