-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
59 lines (49 loc) · 920 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
50
51
52
53
54
55
56
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Mulish", sans-serif;
}
body {
background-image: url(temp2.jpeg);
width: 100vw;
height: 100vh;
background-color: #cccccc;
display: grid;
place-items: center;
}
form {
background-color: rgb(151 155 88);
padding: 80px;
margin: 100px auto;
text-align: center;
box-shadow: 0 10px 6px -6px rgb(0, 0, 0);
}
#tempCalc label {
font-size: 30px;
}
#temp {
border: 12px;
padding: 10px;
height: 40px;
width: 100px;
font-size: 20px;
margin-top: 20px;
}
#temp_diff {
height: 40px;
border: 12px;
margin-top: 20px;
font-size: 15px;
vertical-align: top;
}
.button {
cursor: pointer;
margin-top: 20px;
font-style: bold;
border-radius: 12px;
font-size: 16px;
background-color: rgb(233, 162, 9);
height: 35px;
width: 115px;
}