-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (66 loc) · 1.41 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
75
76
77
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
overflow: hidden;
}
body {
height: 100vh;
background: linear-gradient(80deg, #ec0b0e, #ff00a6);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}
h1{
color: white;
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 20px;
}
fieldset {
background-color: rgb(0, 0, 0);
padding: 50px;
border-radius: 20px;
border: none;
width: 250px;
box-shadow: 4px 8px 20px rgb(0, 0, 0);
}
ol li{
color: white;
font-weight: 500;
padding-bottom: 5px;
}
ol{
padding-bottom: 30px;
}
legend {
color: white;
}
label {
color: white;
font-weight: 500;
}
input {
border-radius: 20px;
border: solid 1px #ff00a6;
padding: 10px;
}
button {
border-radius: 20px;
border: none;
padding: 15px;
justify-content: center;
margin-left: 80px;
font-size: 15px;
color: rgb(255, 255, 255);
background: linear-gradient(80deg, #ec0b0e, #ff00a6);
box-shadow: 0px 4px 6px white;
}
button:hover{
transform: scale(1.1);
transition: 0.8s;
}