-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (92 loc) · 1.65 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
a {
font-size: 15px;
font-family: sans-serif;
text-decoration: none;
color: black;
display: block;
}
h1 {
text-align: center;
font-size: 32px;
font-weight: 600;
padding-top: 10px;
color: black;
}
h2 {
text-align: center;
font-size: 24px;
font-weight: 600;
padding-bottom: 10px;
color: black;
}
p {
font-family: sans-serif;
font-size: 18px;
color: black;
}
h5 {
font-family: sans-serif;
font-size: 10px;
color: black;
position: relative;
bottom: 0;
}
/* Dropdown styles */
.dropdown {
display: inline-block;
position: relative;
align-items: center;
margin: 50px;
}
.dropdown-content {
display: none;
position: absolute;
min-width: 160px;
z-index: 1;
}
.dropdown-content a {
float: none;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Change color of dropdown links on hover */
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown .dropbtn {
cursor: pointer;
font-weight: 600;
border: none;
outline: none;
color: black;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Body styling */
body {
background-color: #c5e8ed;
background-image: url('images.jpeg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
height: 100%;
margin: 0;
padding: 0;
}
li {
display: inline-block;
padding: 1rem 2rem;
}
/* Footer styling */
.footer {
position: fixed;
left: 0;
bottom: 0;
padding: 14px 16px;
width: 100%;
text-align: left;
}