tale/_sass/_layout.scss

44 lines
573 B
SCSS
Raw Normal View History

.container {
margin: 0 auto;
max-width: 800px;
width: 80%;
}
2017-03-11 05:09:18 +00:00
header {
margin: 1.5rem 0 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;
font-size: 2.8rem;
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;
2017-03-15 04:27:59 +00:00
margin: 1.5rem 0 3rem;
text-align: center;
2017-03-12 10:44:45 +00:00
span {
color: $default-color;
2017-03-15 04:27:59 +00:00
font-size: .8rem;
2017-03-12 10:44:45 +00:00
}
}