-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle4.css
53 lines (48 loc) · 1.01 KB
/
style4.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
body{
margin: 0;
padding: 0;
overflow-x: hidden;
background-position: center;
background-size: cover;
background-image: url("./images/header_back.jpg");
background-attachment: fixed;
font-family: 'EB Garamond', serif;
letter-spacing: 1px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f2f2f2;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
/* min-width: 200px; */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.org_comm_headings {
font-weight: bold;
color: #555;
cursor: pointer;
text-decoration: underline;
}
.committee-button:focus {
outline: none;
}
.dropdown-menu {
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dropdown-menu.hidden {
opacity: 0;
visibility: hidden;
}
.footer{
z-index: 20;
}