-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaultStyle.css
More file actions
87 lines (76 loc) · 1.56 KB
/
Copy pathdefaultStyle.css
File metadata and controls
87 lines (76 loc) · 1.56 KB
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
/*For default.html: */
.menu-bar {
display: flex;
background-color: #f8f9fa;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.menu-bar a {
margin: 0 15px;
text-decoration: none;
color: #007BFF;
font-family: Arial, sans-serif;
}
.menu-bar .dropdown {
position: relative;
display: inline-block;
}
.menu-bar .dropdown-btn {
text-decoration: none;
color: #007BFF;
padding: 10px;
cursor: pointer;
}
.menu-bar .dropdown-content {
display: none;
position: absolute;
background-color: #ffffff;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
padding: 10px;
border: 1px solid #ddd;
z-index: 1;
}
.menu-bar .dropdown-content a {
display: block;
padding: 5px 10px;
color: #007BFF;
text-decoration: none;
}
.menu-bar .dropdown-content a:hover {
background-color: #f1f1f1;
}
.menu-bar .dropdown:hover .dropdown-content {
display: block;
}
/*For index.html*/
html, body {
margin: 0;
height: 100%;
}
.center-frame-intro-photo {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
height: auto;
}
.responsive-image {
width: 80%;
height: auto;
object-fit: contain;
border: 1px solid #ddd;
}
.department-logos {
display: flex;
justify-content: flex-start;
align-items: flex-start;
height: 10vh;
gap: 3px;
}
.department-logo-image {
width: 30%;
height: auto;
object-fit: contain;
border: 1px solid #ddd
}