-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (42 loc) · 901 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300&display=swap');
*{
font-family: sans-serif;
}
body{
width: 100%;
height: 85vh;
background-color: #8b9691;
display: grid;
justify-content: center;
align-items: center;
place-items: center;
}
#fa{
font-size: 60px;
}
form{
background-color: #529dc2;
padding: 50px;
display: flex;
flex-direction: column;
-webkit-box-shadow: 0 10px 6px -6px #777;
-moz-box-shadow: 0 10px 6px -6px #777;
box-shadow: 0 10px 6px -6px #777;
border-radius: 10px;
}
#tempCalc label{
font-size: 30px;
}
/* [type="submit"]{
height: 35px;
margin: 20px;
width: 100px;
font-size: 15px;
border: none;
border-radius: 4px;
background-color: black;
color: white;
} */
#resultContainer{
font-size: 35px;
}