-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (84 loc) · 1.42 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
/* --- css reset --- */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a, a:hover, a:visited, a:link, a:active {
text-decoration: none;
}
ol, ul {
list-style: none;
}
/* --- start from here --- */
body * {
font-family: 'Poppins', sans-serif;
border: 1px dashed lightpink;
}
body {
margin: 10px;
}
body>* {
margin: auto;
padding: 5px 0 10px 0;
width: 75%;
min-width: 400px;
max-width: 700px;
}
.searchBar {
margin: 10px 0 5px 0;
display: flex;
height: 45px;
}
.searchTerm {
width: 100%;
min-width: 200px;
border: 5px solid lightseagreen;
border-right: none;
padding: 5px;
border-radius: 5px 0 0 5px;
outline: none;
color: #9DBFAF;
font-size: 15px;
}
.searchTerm:focus {
color: black;
}
.searchButton {
width: 200px;
border: 5px solid lightseagreen;
background: lightseagreen;
text-align: center;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 20px;
}
#city {
text-align: center;
}
.meteo .wrap > * {
padding: 5px;
text-align: center;
}
#canvas {
width: 95%;
height: 600px;
min-width: 600px;
max-width: 95%;
white-space: pre;
}
.wrap-map {
/* position: absolute; */
/* top: 0; */
/* bottom: 0; */
margin-top: 10px;
width: 95%;
height: 600px;
overflow: hidden;
}
#map {
width: 100%;
height: 100%;
}