-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (126 loc) · 2.39 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@font-face {
font-family: future-mood;
src: url('./future\ mood.ttf');
}
@font-face {
font-family: big-noodle;
src: url('MavenPro-Regular.ttf');
}
:root {
--bright-pink: rgb(226, 57, 139);
--hover-expansion-duration: 0.2s;
}
* {
padding: 0;
margin: 0;
}
body {
padding: 10px;
}
body, button {
font-family: big-noodle, 'Courier New', Courier, monospace;
color: rgb(58, 30, 87);
}
.title {
font-family: future-mood, 'Courier New', Courier, monospace;
color: rgb(255, 255, 255);
font-size: 2rem;
font-style: italic;
text-shadow: -1px -1px 0 cadetblue,
1px -1px 0 #000,
-1px 1px 0 cadetblue,
1px 1px 0 #000;;
width: max-content;
}
.title, button {
transition: color var(--hover-expansion-duration),
letter-spacing var(--hover-expansion-duration);
}
.title:hover, button:hover {
color: var(--bright-pink);
letter-spacing: 0.3ch;
transition: color var(--hover-expansion-duration),
letter-spacing var(--hover-expansion-duration);
}
main {
margin-top: 10px;
display: flex;
gap: 40px;
}
.search-form h1 {
grid-column: 1 / -1;
}
h1, header {
font-weight: 900;
font-size: 1.5rem;
letter-spacing: 3px;
}
.search-form {
display: grid;
grid-template-columns: auto 1fr;
gap: 10px;
margin-bottom: 40px;
border: 5px dashed rgb(59, 229, 212);
padding: 10px;
}
#search-button {
width: max-content;
height: min-content;
}
.error-display {
color: rgb(128, 0, 62)
}
.map-search-container {
border: 5px dashed aquamarine;
padding: 10px;
}
.results-container {
border: 5px dashed rgb(26, 199, 193);
padding: 10px;
height: min-content;
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: 10px;
}
.results-container > header {
grid-column: 1 / -1;
font-size: 1.3rem;
}
#map {
height: 400px;
width: auto;
border: 5px dotted rgb(29, 220, 220);
margin-bottom: 10px;
}
button {
color: rgb(58, 30, 87);
padding: 3px 10px;
border: 1px solid rgb(187, 209, 255);
border-radius: 30px;
background-color: aliceblue;
}
input, select {
border-radius: 5px;
border: 1px solid rebeccapurple;
padding: 2px;
background-color: white;
}
input:focus {
outline: 1px solid rebeccapurple;
}
.loading {
animation: 0.2s infinite alternate loading;
}
@keyframes loading {
from {
background-color: aliceblue;
}
to {
background-color: hotpink;
}
}
.result-graphic {
width: 50px;
height: 50px;
}