-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemergency.css
104 lines (91 loc) · 1.52 KB
/
emergency.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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
color: #333;
padding-left: 100px;
padding-top: 80px;
padding-right: 50px;
}
nav {
background-color: rgb(5, 1, 8);
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
animation: slideInDown 0.5s ease-in-out;
}
#logo img {
height: 50px;
}
.menu-toggle {
display: none;
background-color: transparent;
border: none;
color: white;
font-size: 18px;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
.item {
margin: 0 15px;
}
.item a {
text-decoration: none;
color: white;
font-size: 16px;
display: flex;
align-items: center;
}
.item a i {
margin-right: 8px;
font-size: 18px; /* Adjust icon size */
}
.item a:hover {
text-decoration: underline;
}
h1 {
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
}
h2 {
color: #2980b9;
margin-top: 20px;
margin-bottom: 10px;
}
h3 {
color: #34495e;
margin-top: 15px;
margin-bottom: 8px;
}
p {
margin-bottom: 15px;
}
ul {
margin-bottom: 15px;
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
/* Footer styles */
footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background-color: #2980b9;
color: white;
position: relative;
}