-
Notifications
You must be signed in to change notification settings - Fork 0
/
temperature.css
71 lines (63 loc) · 1.48 KB
/
temperature.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
* {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
width: 100%;
height: 100vh;
background-image:
linear-gradient(to bottom right,#30D5C8,#ffbcd9 );
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container h1 {
font-family: Rockwell;
position: relative;
top: -15px;
color: gray;
font-weight: 700;
font-size: 30px;
text-align: center;
bo
}
.converter-row {
display: flex;
width: 40%;
justify-content: space-between;
align-items: center;
background: rgba(255, 255, 255,0.4);
border-radius: 10px;
padding: 50px 20px;
color: ;
}
.col {
flex-basis: 32%;
text-align: center;
}
label:hover{
color: black;
cursor: pointer;
}
.col label {
font-family: Rockwell;
font-size: 18px;
font-weight: 500;
margin-bottom: 10px;
color: slategrey;
}
.col input {
width: 150px;
height: 30px;
background: white;
border-radius: 5px;
text-align: center;
}
img{
position: relative;
top: 10px;
height: 33px;
width: 33px;
}