-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (82 loc) · 1.34 KB
/
style.css
File metadata and controls
82 lines (82 loc) · 1.34 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
body {
font-family: "Roboto", sans-serif;
}
.container {
display: block;
max-width: 60%;
margin-top: 20px;
margin-bottom: 20px;
border: solid 2px blue;
background: radial-gradient(
circle at 10% 20%,
rgb(239, 246, 249) 0%,
rgb(206, 239, 253) 90%
);
}
input {
margin: 10px 0;
border: solid 1px blue;
color: blue;
padding: 5px 10px;
}
button {
margin: 10px 0;
padding: 5px 10px;
}
h1 {
margin: 0;
}
i {
font-size: 50px;
}
.col.main {
text-align: center;
font-weight: bold;
font-size: 24px;
color: blue;
}
.celsium {
color: blue;
transition: all 150ms ease-in-out;
}
.celsium:hover {
cursor: pointer;
}
.fahrenheit {
color: blueviolet;
transition: all 150ms ease-in-out;
}
.fahrenheit:hover {
cursor: pointer;
}
ul {
list-style: none;
}
.col {
text-align: right;
color: blue;
font-size: 18px;
font-weight: bold;
}
.col-1 {
display: block;
margin: 0 auto;
text-align: center;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
color: blue;
font-size: 20px;
transition: all 150ms ease-in-out;
}
.col-1:hover {
cursor: pointer;
}
.fa-solid.fa-cloud-showers-heavy {
font-size: 50px;
color: rgb(45, 153, 224);
}
.fa-solid.fa-cloud-showers-water {
font-size: 50px;
color: rgb(45, 153, 224);
}