-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.47 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
html, body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #007bff;
color: white;
padding: 10px 0;
text-align: center;
}
h1 {
margin: 0;
}
#emergencyLinks {
display: flex;
justify-content: space-around;
margin: 15px auto;
}
#emergencyLinks a {
text-decoration: none;
font-weight: bold;
padding: 10px 15px;
border: 2px solid #007bff;
border-radius: 5px;
color: #007bff;
}
#emergencyLinks a:hover {
background-color: #007bff;
color: white;
}
main {
text-align: center;
padding: 20px;
}
form {
margin: 20px auto;
max-width: 400px;
display: flex;
flex-direction: column;
gap: 10px;
}
input, button {
padding: 10px;
font-size: 1em;
}
button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
table {
width: 90%;
margin: 20px auto;
border-collapse: collapse;
}
th, td {
padding: 10px;
border: 1px solid #ddd;
text-align: center;
}
footer {
text-align: center;
padding: 10px;
background-color: #f1f1f1;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1000;
}
.modal-content {
background: white;
padding: 20px;
margin: 15% auto;
width: 50%;
border-radius: 10px;
}
.close {
float: right;
font-size: 1.5em;
cursor: pointer;
}