-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (55 loc) · 1.13 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
body{
width: 100vw;
height: 100vh;
display: grid;
place-items: center;
background-color: #FF3CAC;
background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
}
form{
display: grid;
place-items: center;padding: 9px;
background-color: #A9C9FF;
background-image: linear-gradient(180deg, #A9C9FF 0%, #FFBBEC 100%);
border: 2px solid #784BA0;
border-radius: 100px;
box-shadow: 5px 10px 20px #784BA0 inset;
padding: 8%;
}
label{
font-size: X-large;
padding: 20px;
margin: 20px;
}
#temp{
font-size: large;
text-align: center;
margin: 20px;
border: 2px solid #784BA0;
border-radius: 4px;
padding: 5px;
}
select{
font-size: large;
text-align: center;
border: 2px solid #784BA0;
border-radius: 4px;
padding: 5px;
}
#submit{
display:grid;
place-items: center;
padding: 7px;
font-size: large;
border: 2px solid #784BA0;
border-radius: 7px;
background-color:rgba(215, 81, 206, 0.86);
color: white;
}
span
{
font-size: large;
}
#submit:hover{
background-color: rgb(225, 61, 132);
}