-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclicky.scss
61 lines (52 loc) · 952 Bytes
/
clicky.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
@font-face {
font-family: AleoLight;
src: url("Aleo-Light.otf");
}
@font-face {
font-family: RalewayExtraLight;
src: url("Raleway-ExtraLight.ttf");
}
// variables
$SansSerifLight: RalewayExtraLight;
$SerifLight: AleoLight;
$teal: rgb(100, 185, 172);
body {
text-align: center;
font-family: $SansSerifLight;
padding-top: 9em;
a {
color: $teal;
}
.intro {
font-size: 1.6em;
letter-spacing: 11px;
text-transform: uppercase;
}
.clicky {
color: $teal;
text-transform: uppercase;
font-family: $SerifLight;
font-size: 11em;
letter-spacing: -7px;
margin-top: -25px;
}
.button {
padding-top: 35px;
padding-bottom: 55px;
button {
border: none;
background-color: black;
color: white;
font-size: 2em;
padding-left: 27px;
padding-right: 27px;
padding-top: 13px;
padding-bottom: 13px;
text-transform: uppercase;
font-family: $SansSerifLight;
}
}
.message {
padding-top: 2em;
}
}