-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemperature.css
More file actions
59 lines (51 loc) · 940 Bytes
/
temperature.css
File metadata and controls
59 lines (51 loc) · 940 Bytes
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
body{
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(2, 0, 22);
}
h1{
text-align: center;
color: #0077ff;
}
#tit{
font-size: 50px;
font-weight: 900;
}
form{
background-color: #87b8f0;
text-align: center;
max-width: 400px;
margin: auto;
padding: 25px;
border-radius: 10%;
box-shadow: 0px 0px 15px wheat;
}
#tempbox{
width: 50%;
text-align: center;
font-size: xx-large;
border: 4px solid burlywood;
border-radius: 15px;
margin-bottom: 25px;
}
label{
font-size: large;
font-weight: 900;
}
button{
margin-top: 15px;
background-color: rgb(180, 219, 241);
font-size: 35px;
font-weight: 600;
color: rgb(6, 80, 129);
border: none;
padding: 10px 15px;
border-radius: 50px;
cursor: pointer;
}
button:hover{
background-color: #0077ff;
}
#result{
font-size: xx-large;
font-weight: 900;
}