-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (85 loc) · 1.52 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
body {
background-color: antiquewhite;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.header-row {
display: flex;
flex-wrap: wrap;
grid-template-columns: auto auto;
}
h1 {
text-align: center;
justify-content: center;
padding-top: 10px;
}
button {
border: none;
color: black;
background-color: lightblue;
border: solid;
border-color: black;
border-radius: 5px;
padding: 5px 10px;
text-align: center;
text-decoration: none;
font-size: 16px;
/* margin: 4px 2px; */
cursor: pointer;
}
button.show {
background-color: orange;
}
.grid-container div {
display: flex;
flex-wrap: wrap;
grid-template-columns: auto auto auto;
justify-content: space-evenly;
margin-bottom: 0;
padding: 0;
gap: 2px;
}
.coordinates {
display: flex;
justify-content: center;
font-weight: bold;
}
.coordinates span {
font-weight: normal;
gap: 5px;
}
footer .grid-container {
margin-bottom: 0px;
padding: 0px;
}
footer .copyright_title {
display: flex;
justify-content: center;
font-weight: bold;
font-weight: normal;
justify-content: space-evenly;
padding-bottom: 25px;
}
.map-container {
display: flex;
align-items: center;
justify-content: center;
grid-row: 1/3;
grid-template-columns: auto auto auto;
justify-content: space-evenly;
}
#issMap,
#issMap2 {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
border: solid;
border-color: black;
margin: 10px 50px 0px 50px;
padding: 0px;
height: 400px;
/* width: 400px; */
}