-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (111 loc) · 2.01 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
header {
font-family: "ABeeZee";
font-size: 22px;
background-color: black;
color: white;
text-align: center;
display: block;
padding: 2%;
margin: 0px;
}
a.header {
color: white;
text-decoration: none;
}
a:hover.header {
color: lightgray;
}
a {
color: black;
text-decoration: underline;
}
a:hover {
color: dimgray;
}
body {
font-family: "ABeeZee";
font-size: 22px;
background-color: hsl(241, 67%, 37%);
}
div.body {
margin: 5%;
padding: 5%;
max-width: 35%;
background-color: white;
}
div.header {
padding: 2%;
font-family: "ABeeZee";
font-size: 22px;
background-color: black;
color: white;
line-height: 1;
text-align: center;
}
div.footer {
padding: 2%;
font-family: "ABeeZee";
font-size: 22px;
background-color: white;
color: black;
text-align: center;
}
h2.icons {
word-spacing: 30px;
}
img {
position: absolute;
left: 40%;
top: 40%;
padding: 5%;
z-index: -1;
}
script {
display: none;
}
/* Dropdown Button */
.dropbtn {
background-color: black;
color: white;
padding: 16px;
border: none;
cursor: pointer;
font-family: "ABeeZee";
font-size: 22px;
}
/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
background-color: black;
color: lightgray;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
text-align: left;
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 265px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
display: block;
}