-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpulla.css
107 lines (90 loc) · 1.51 KB
/
pulla.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
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
:root {
--font-main: "Roboto Mono", monospace;
}
* {
margin: 0;
padding: 0;
}
nav {
background-color: bisque;
height: 4rem;
display: flex;
justify-content: space-between;
}
h1 {
margin: 20px;
font-family: var(--font-main);
}
a {
font-family: var(--font-main);
text-decoration: none;
color: rgb(50, 88, 88);
margin: 10px;
}
#pulla-intro {
background-color: rgb(143, 212, 212);
padding: 15px;
font-size: 1.2rem;
text-align: center;
font-family: var(--font-main);
}
body {
background-color: antiquewhite;
}
#search {
padding-top: 30px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
select {
width: 300px;
margin: 30px;
padding: 15px;
}
p {
padding-top: 10px;
font-family: var(--font-main);
}
form {
font-family: var(--font-main);
display: flex;
flex-direction: column;
}
input {
width: 250px;
align-self: center;
margin-bottom: 20px;
padding: 20px;
background-color: rgb(116, 175, 175);
color: white;
border-style: none;
font-family: var(--font-main);
}
label {
text-align: center;
margin-top: 20px;
}
input:hover {
cursor: pointer;
}
.town-result {
margin: 15px;
padding: 10px;
border-color: black;
border-style: double;
border-width: 2px;
}
i {
color: rgb(202, 137, 16);
}
#login {
text-align: center;
padding-top: 30px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}