-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.scss
79 lines (60 loc) · 1011 Bytes
/
style.scss
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import "type";
@import "bourbon/bourbon";
$color: #A0C55F;
$dark-color: #537508;
* {
@include box-sizing(border-box);
}
html {
margin: 0;
padding: 0;
}
body {
margin: 0 auto;
width: 700px;
font-family: 'Aften Screen', sans-serif;
font-size: 30px;
background-color: #fcfcfc;
color: #444;
}
img {
max-width: 100%;
}
h1 {
background: url(img/umbrella_twotone.svg) left top no-repeat;
background-size: 200px 200px;
font-weight: normal;
font-style: italic;
line-height: 1em;
color: $color;
font-size: 3em;
padding-top: 230px;
padding-bottom: 20px;
}
h2 {
color: #888;
text-transform: uppercase;
font-weight: bold;
font-size: 0.6em;
letter-spacing: 0.4em;
margin: 6em auto 3em;
}
a {
color: $color;
text-decoration: none;
display: inline-block;
padding: 2px;
background-color: transparent;
&:hover {
background-color: lighten($color, 38%);
}
}
.hidden {
display: none;
}
.copyright {
color: #888;
font-size: 0.6em;
margin-top: 4em;
padding-bottom: 2em;
}