blob: 6f55f015a1a86494dfead4ba2942ea19c5bdbea3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
@import 'base';
@import 'footer';
body {
text-align: center;
margin: 0;
}
article {
height: 100vh;
min-height: 500px;
@include flexbox;
@include justify-content(center);
@include align-items(center);
}
div {
@include flex(1, 0, auto);
}
h1 {
font-weight: $normal-font-weight;
margin: 0;
padding: 0;
font-size: 300%;
letter-spacing: -1px;
}
a {
@extend %link;
}
|