-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathstyle.css
56 lines (48 loc) · 797 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
* {
font-family: 'Lato', sans-serif;
margin: 0;
padding: 0;
}
body {
height: 100vh;
width: 100%;
overflow-x: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
background-color: #411e2f;
color: #ffffff;
}
h1 {
font-size: 2.25em;
color: #ff9a56;
}
p {
font-size: 1.1em;
}
a {
color: #21ffff;
padding: 10px 25px;
text-decoration: none;
border: 2px #21ffff solid;
font-weight: 600;
}
a:hover {
color: #35081d;
background-color: #21ffff;
transition-duration: 0.3s;
}
header {
background-color: #35081d;
padding: 2%;
color: white;
}
section {
margin: 1% 10%;
}
footer {
background-color: #35081d;
padding: 2%;
color: white;
}