-
Notifications
You must be signed in to change notification settings - Fork 0
/
fahrenheit.css
75 lines (66 loc) · 1.05 KB
/
fahrenheit.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
body {
background-color: black;
color: white;
font-family: "Josefin Sans", sans-serif;
margin: 15px;
}
#container {
background-color: grey;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-content: space-around;
justify-content: space-around;
}
#location {
padding: 5%;
font-size: 6vw;
text-align: left;
min-height: 6.25vw;
}
#locationInput {
font-size: 5vw;
display: none;
}
#location a,
#location a:visited {
color: white;
text-decoration: none;
}
#temp {
background-color: cadetblue;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
height: 60%;
width: 75%;
}
.text {
font-size: 15vw;
color: beige;
}
#celsius {
padding: 1%;
display: flex;
justify-content: center;
align-items: center;
height: 50%;
width: 50%;
}
#fahrenheit {
padding: 1%;
display: flex;
justify-content: center;
align-items: center;
height: 50%;
width: 50%;
}
#wtf {
margin: 5px;
padding: 10px;
padding-right: 15px;
text-align: right;
font-size: 6vw;
}