-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
46 lines (41 loc) · 1002 Bytes
/
stylesheet.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
html{
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
/* fallback for old browsers */
background: #56ab2f;
/* Chrome 10-25, Safari 5.1-6 */
background: -webkit-linear-gradient(to right, #a8e063, #56ab2f);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: linear-gradient(to right, #a8e063, #56ab2f);
color: white;
font-family: 'Nunito', Tamoha;
}
h1{
position: absolute;
font-size: 14px;
margin-left: 8px;
}
p{
font-family: Nunito;
font-weight: Bold;
font-size: 20px;
}
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 100%;
}
.footer{
position: absolute;
bottom: 0;
right: 14px;
text-align: right;
font-size: 10px;
}