This repository was archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (107 loc) · 1.75 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&display=swap');
body {
background-color: rgb(200, 214, 234);
}
body,
input,
button {
font-size: 12pt;
font-family: 'Archivo', sans-serif;
}
main {
padding: 24px;
}
main h2 {
margin-top: 0;
text-align: center;
}
footer {
margin: 12px auto;
text-align: center;
}
footer a {
color: #81704f;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
div.buttons_container {
display: flex;
flex-direction: column;
margin: 16px 0px;
gap: 8px;
}
button#btn-local span {
font-size: 10pt;
}
button#btn-def,
button#btn-go,
button#btn-local {
background-color: black;
border: 0;
color: white;
border-radius: 5px;
padding-top: 8px;
padding-bottom: 8px;
cursor: pointer;
}
input,
select {
border: 2px solid black;
border-radius: 5px;
line-height: 22px;
padding: 5px;
margin-top: 10px;
margin-bottom: 10px;
}
input#lat,
input#lng {
width: 100%;
box-sizing: border-box;
}
div.inputs_container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
div.radius_container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
border: 2px solid black;
border-radius: 5px;
background-color: white;
padding: 0px 10px;
margin: 10px 0px;
}
input#ran {
flex-grow: 1;
width: 100%;
}
input#ran_value,
select#ran_unit {
border: 1px solid white;
outline: 0px;
min-width: 50px;
max-width: 100px;
}
input#ran_value:focus {
background-color: rgba(0, 0, 0, 0.05);
}
div#map-container {
border: 2px solid black;
height: 50vh;
}
@media (min-width: 768px) {
body {
max-width: 768px;
margin: 0px auto;
}
}
@media (max-width: 425px) {
main {
padding: 10px
}
}