-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (44 loc) · 795 Bytes
/
style.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
body{
font-family: Arial, sans-serif;
background-color: rgb(224, 222, 222);
}
h1{
color: blue;
}
form{
background-color: white;
text-align: center;
width: 300px;;
margin: auto;
padding: 25px;
border-radius: 10px;
box-shadow: 5px 5px 15px rgb(139, 138, 138);
}
#temp{
width: 50%;
text-align: center;
font-size: 2em;
border-radius: 5px;
box-shadow: 5px 5px 15px rgb(138, 137, 137);
margin : 20px;
}
label{
font-size: 1.5em;
font-weight: bold;
}
button{
font-size: 1.5em;
margin-top: 15px;
color: rgb(255, 255, 255);
background-color: black;
border-radius: 5px;
cursor: pointer;
}
button:hover{
background-color: white;
color: black;
}
#result{
font-size: 1.5em;
font-weight: bold;
}