-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.css
71 lines (62 loc) · 1.2 KB
/
temp.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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Poppins', sans-serif;
}
.box {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
text-align: center;
background-color: rgb(0, 2, 2);
}
#calcTemp {
padding: 29px 67px;
min-height: 290px;
background-color: #cdd8fd;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) ;
}
label {
font-size: 30px;
line-height: 78px;
}
#temp {
width: 110px;
height: 34px;
border-radius: 5px;
margin: 12px;
padding: 8px;
font-size: 20px;
font-weight: 500;
border: none;
outline: none;
}
#tempdiff {
width: 120px;
height: 34px;
border-radius: 5px;
margin: 12px;
font-size: 18px;
font-weight: 500;
border: none;
outline: none;
}
#submit {
width: 100px;
border-radius: 4px;
margin: 30px 0 20px 0;
font-size: 18px;
/* background-color: rgb(38, 33, 33); */
padding: 5px;
transition: all 0.5s ease;
}
#submit:hover{
color: rgb(217, 15, 15);
cursor: pointer;
}
#result{
font-size: 27px;
}