-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (83 loc) · 1.68 KB
/
style.css
File metadata and controls
96 lines (83 loc) · 1.68 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, rgba(124, 4, 148, 0.91), rgba(1, 16, 150, 0.91));
background-repeat: no-repeat;
font-family: Verdana, Tahoma, sans-serif;
text-align: center;
height: 100vh;
display: flex;
}
.container {
text-align: center;
border-radius: 10px;
background-color: white;
padding: 30px;
margin: auto;
max-width: 350px;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.205);
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
gap: 20px;
}
h2 {
font-size: 1.5rem;
color: hsl(240, 98%, 66%);
font-weight: 600;
}
#temp {
display: inline;
padding: 10px;
font-size: 1.2rem;
font-weight: bold;
border: 2px solid rgb(218, 218, 218);
border-radius: 4px;
outline-color: hsl(240, 100%, 76%);
text-align: center;
}
.selection {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
}
.unitGroup {
display: inline-block;
padding: 0.6rem;
border: 1px solid rgb(218, 218, 218);
border-radius: 4px;
}
.unitGroup,
.unitGroup input,
.unitGroup label,
button {
cursor: pointer;
}
.indicator {
display: flex;
flex-flow: column;
gap: 2px;
color: rgba(124, 4, 148, 0.91);
}
label {
font-size: 1rem;
font-weight: medium;
}
button {
margin-top: 20px;
border: none;
padding: 10px 32px;
background: linear-gradient(135deg, rgba(170, 0, 204, 0.91), rgba(1, 23, 212, 0.91));
color: white;
border-radius: 4px;
font-size: 1.2rem;
}
#tempResult {
font-size: 1.1rem;
font-weight: medium;
margin-top: 10px;
}