-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
91 lines (75 loc) · 1.38 KB
/
Copy pathindex.css
File metadata and controls
91 lines (75 loc) · 1.38 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
88
89
90
91
/* *{
background-color: aqua;
} */
*{
margin: 0;
/* background-color: #C0D8C0; */
}
/* :root {
--backgroundpage:#7897AB;
--background: #655D8A;
--para: #ebdcce;
} */
:root {
--backgroundpage:#334257;
--background: #476072;
--para: #EEEEEE;
}
body{
font-family: 'Open Sans', sans-serif;
background: var(--backgroundpage);
margin-left: 1rem;
margin-right: 1rem;
}
#map {
height: 50vh;
}
.parameters{
display: flex;
gap:2rem;
margin:1rem;
}
/* .container{
display: grid;
grid-template-rows: 1fr 2fr;
} */
.head{
/* align-self: auto; */
color: aqua;
display: flex;
justify-content: center;
padding: 1rem;
}
.container{
display: flex;
flex-direction: column;
}
.parameters > h3 {
color: var(--para);
background-color: var(--background);
padding: 1rem;
border-radius: 0.4rem;
box-shadow: 0.5px 0.5px 4px 1px #EEEEEE;
}
.container > #map{
border-radius: 1rem;
box-shadow: 0.5px 0.5px 5px 1px #EEEEEE;
}
@media only screen and (max-width: 800px) {
/* body {
background-color: rgb(48, 100, 117);
} */
.container{
display: flex;
flex-direction: column;
}
.parameters{
display: flex;
gap:1rem;
/* margin:1rem; */
flex-wrap: wrap;
}
/* #map {
height: 60%;
} */
}