-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (71 loc) · 1.34 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
width: 90%;
margin: 0 auto;
}
nav{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 8vh;
background-color: lightblue;
font-family: 'Poppins', sans-serif;
}
.logo{
color: rgb(77, 68, 68);
letter-spacing: 3px;
font-size: 16px;
width: 20%;
}
.navigation{
display: flex;
justify-content: space-around;
list-style: none;
width: 90%;
font-size: 16px;
font-weight: 60px;
}
.navigation a{
color: rgb(77, 68, 68);
text-decoration: none;
letter-spacing: 3px;
font-weight: weight;
font-size: 14px;
}
.content{
text-align: center;
padding: 10px;
}
.content h3{
font-family: 'Poppins', sans-serif;
}
.content h4{
padding: 20px;
font-family: 'Poppins', sans-serif;
}
.button{
background-color: darkgrey;
border-bottom: darkorange;
color: white;
padding: 5px 10px;
width: 50%;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}
.button:hover{
background-color: lightgreen;
}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.content h3{
font-family: 'Poppins', sans-serif;
}
.content h4{
padding: 20px;
font-family: 'Poppins', sans-serif;
}