tale/_sass/_layout.scss

42 lines
519 B
SCSS
Raw Normal View History

.container {
margin: 0 auto;
2017-03-14 03:55:34 +00:00
max-width: 1000px;
width: 80%;
}
2017-03-11 05:09:18 +00:00
header {
2017-03-12 10:44:45 +00:00
margin: 1.5rem 0;
2017-03-11 05:09:18 +00:00
text-align: center;
* {
margin: 0;
}
h2 {
@include transition(all .3s ease-out);
color: $default-color;
display: inline-block;
2017-03-12 10:44:45 +00:00
font-size: 3rem;
2017-03-11 05:09:18 +00:00
2017-03-12 10:44:45 +00:00
&:hover,
&:focus {
2017-03-11 05:09:18 +00:00
opacity: .6;
}
}
h4 {
color: $default-tint;
font-family: $serif-font;
font-weight: 400;
}
}
2017-03-12 10:44:45 +00:00
footer {
font-family: $sans-font;
margin: 3rem 0;
span {
color: $default-color;
}
}