-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (52 loc) · 1001 Bytes
/
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
body {
text-align: center;
font-family: 'Lora', serif;
background-image: url(images/florian-olivo-4hbJ-eymZ1o-unsplash.jpg);
background-size: cover;
color: white;
}
h1 {
font-size: 55px;
padding-top: 40px;
margin-top: 50px;
}
h3 {
font-size: 35px;
padding-bottom: 20px;
}
h5 {
font-size: 20px;
padding-bottom: 20px;
}
p {
font-size: 25px;
margin-bottom: 30px;
padding-bottom: 30px;
}
.button {
text-decoration: none;
background-color: rgb(1,128,173);
color: white;
font-size: 20px;
padding: 10px 15px 10px 15px;
border-radius: 4px;
}
.button:hover {
background-color: rgba(1,128,173,0.7);
}
.list li {
display: inline
}
.list a {
color: white;
padding-left: 25px;
margin-right: 60px;
text-decoration: none;
font-size: 40px;
}
.list a:hover {
color: rgba(1,128,173,0.7)
}
footer {
text-align: right;
}