forked from sofakingforever/wakey-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (95 loc) · 2.36 KB
/
style.css
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
background: #210444 url("./images/stars.png");
background-repeat: repeat-y;
background-size: cover;
background-position: top center;
}
@media screen and (min-width: 601px) {
h1 {
font-size: 40px;
}
h3 {
font-size: 32px;
}
}
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
h1 {
font-size: 8vw;
}
h3 {
font-size: 6vw;
}
}
h1 {
font-family: "Terminal Dosis"; font-style: normal; font-variant: normal; font-weight: 700;
color: white;
}
h3 { font-family: "Terminal Dosis"; font-style: normal; font-variant: normal; font-weight: 300;
color: white;
}
h4 { font-family: "Terminal Dosis"; font-style: normal; font-variant: normal; font-weight: 300;
color: white;
}
p { font-family: "Terminal Dosis"; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 600;
color: white;
}
blockquote { font-family: "Terminal Dosis"; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; }
pre { font-family: "Terminal Dosis"; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }
.h1-centered {
margin-top: 80px;
text-align: center;
}
.h3-centered {
margin-top: 20px;
text-align: center;
}
.inner {
position: absolute;
width: 100%;
}
/* Add a black background color to the top navigation */
.bottomnav {
/* background-color: #333; */
overflow: hidden;
}
/* Style the links inside the navigation bar */
.bottomnav a {
font-family: "Terminal Dosis"; font-style: normal; font-variant: normal; font-weight: 700;
float: center;
color: white;
text-align: center;
padding: 14px 14px;
text-decoration: none;
font-size: 14px;
}
/* Change the color of links on hover */
.bottomnav a:hover {
/* background-color: #ddd; */
color: #FFD940;
}
/* Add a color to the active/current link */
.bottomnav a.active {
/* background-color: #4CAF50; */
color: white;
}
a.downloadLink {
color:#ffffff;
}
a.downloadLink:hover {
color:#FFD940;
}
.googlePlay {
width:222px;
height:66px;
background: url("./images/google_play.svg");
border: none;
cursor: pointer;
}
.googlePlay:hover {
width:222px;
height:66px;
background: url("./images/google_play_hover.svg");
border: none;
cursor: pointer;
}