-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
55 lines (50 loc) · 1.07 KB
/
stylesheet.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
body {
color: white;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.container {
background: rgb(2, 0, 36);
background: radial-gradient(
circle,
rgba(2, 0, 36, 1) 0%,
rgba(9, 9, 121, 1) 41%,
rgba(0, 212, 255, 1) 100%
);
width: 50%;
height: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
}
.thermostat-box {
text-align: center;
flex-grow: 1;
}
.location-box {
text-align: center;
flex-grow: 1;
}
button,
input[type="submit"] {
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
background-color: rgba(0, 212, 255, 1);
border: none;
color: black(172, 163, 163);
padding: 15px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
}
input[type="text"] {
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
background-color: lightgrey;
border: none;
color: black;
padding: 15px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
}