-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (65 loc) · 1.29 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
63
64
65
66
67
68
69
70
71
72
73
74
*{
padding: 0px;
margin: 0px;
box-sizing:border-box;
}
body{
background: linear-gradient(#e66465, #9198e5);
background-repeat: no-repeat;
min-height: 100vh;
}
header{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 3rem;
text-transform: uppercase;
color: #fff;
}
header, form {
min-height: 20vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
justify-content: space-around;
}
form label{
font-family: cursive;
}
form select{
margin-bottom: 4rem;
margin-top: 1rem;
margin-left: 6px;
border: none;
background-color: rgb(130, 65, 196);
color: white;
border-radius: 10px;
padding: 5px;
}
form input{
padding: 0.2rem;
width: 120px;
margin-bottom: 1rem;
font-size: 1rem;
border:none;
background:rgb(255, 255, 255);
}
form button{
color:white;
padding: .5rem;
margin-left: 5px;
border: none;
border-radius: 20px;
background:purple;
cursor: pointer;
text-transform: uppercase;
font-family:Verdana;
transition: all 0.5s ease;
}
form button:hover{
background-color:rgb(202, 43, 202);
box-shadow:0px 5px rgba(0, 0, 0, 0.61);
}
form p{
margin-top:20px;
color: #fff;
}