-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (102 loc) · 1.84 KB
/
styles.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
/* styles.css */
/* Basic Reset */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Body Styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
}
/* Header Styling */
header {
background-color: #007acc;
color: #fff;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
header h1 {
font-size: 24px;
}
.header-buttons {
display: flex;
}
.header-buttons button {
background-color: #005f99;
border: none;
color: #fff;
padding: 10px 15px;
margin-left: 10px;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
.header-buttons button:hover {
background-color: #004d80;
}
/* Table Styling */
#metadataTable {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
#metadataTable th, #metadataTable td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
#metadataTable th {
background-color: #f2f2f2;
font-weight: bold;
}
#metadataTable tr:hover {
background-color: #f1f1f1;
}
/* Modal Styling */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.5);
}
.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 8px;
width: 80%;
max-width: 500px;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:hover {
color: #000;
}
/* Map style */
#map {
width: 98%;
height: 400px; /* Keeps the height fixed */
margin: 20px auto; /* Centers the map */
}
footer {
text-align: center;
padding: 10px;
margin-top: 20px;
}
footer img {
cursor: pointer;
}