-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemperature_Converter.css
96 lines (95 loc) · 2 KB
/
Temperature_Converter.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: url(https://danielkordan.com/wp-content/uploads/2015/08/DSC_4062-Panoramajj2.jpg);
font-size: 1rem;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
background-size: cover
}
.title {
color: #faf0f0;
font-size: 1.5rem;
text-align: center;
}
.temp_conv {
background: transparent;
backdrop-filter: blur(30px);
border-radius: 5px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding: 30px 25px 20px;
min-width: 320px;
width: 100%;
height: auto;
}
.result {
text-align: center;
margin: 20px 0;
}
.result-heading {
color: #fff9f9;
font-size: 1rem;
font-weight: 600;
}
.celsius-value {
border-bottom: 2px solid #fff9f9 ;
padding: 10px;
}
label {
color: hwb(0 71% 25%);
font-size: 1rem;
margin-bottom: 5px;
}
input,
select {
background: transparent;
border: none;
outline: none;
border-bottom: 2px solid #e8dede;
padding: 8px;
margin-bottom: 15px;
}
input:focus {
border: 1px solid #4c49f3;
}
.degree_conv {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.degree_input {
display: flex;
flex-direction: column;
width: 46%;
}
option {
background-color: #918c8c;
color: #efe6e6;
}
#convert {
background: linear-gradient(to bottom, #ec42a8, #d90cf0);
border: none;
outline: none;
border-radius: 5px;
color: #e6dce6;
cursor: pointer;
font-weight: bold;
letter-spacing: 1px;
text-transform: uppercase;
margin-top: 10px;
padding: 12px 80px;
transition: all 0.3s ease-in;
}
#convert:hover {
background: linear-gradient(to bottom, #317ae8, #4c13db);
}