-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
71 lines (62 loc) · 1.34 KB
/
style2.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
@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&family=Poppins:wght@300&family=Raleway:ital,wght@0,300;1,400&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Poppins', sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background-color: azure;
}
#calcTemp {
padding: 29px 67px;
min-height: 290px;
background-color: #d664ff;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px
}
label {
font-size: 30px;
list-style: 78px;
}
#temp {
width: 110px;
height: 34px;
border-radius: 5px;
margin: 12px;
padding: 8px;
font-size: 20px;
font-weight: 500;
border: none;
outline: none;
}
#temp_diff {
width: 120px;
height: 34px;
border-radius: 5px;
margin: 12px;
font-size: 18px;
font-weight: 500;
border: none;
outline: none;
}
#submit {
width: 100px;
border-radius: 5px;
margin: 30px 0 20px 0;
font-size: 18px;
background-color: rgb(218 229 220);
padding: 5px;
transition: all 0.5s ease;
}
#submit:hover {
background-color: antiquewhite;
cursor: pointer;
}
#result {
font-size: 27px;
}