-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (52 loc) · 1.07 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}
.main-container{
width: 600px;
background: white;
max-width: 100%;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.header-container{
font-size: 1.3rem;
padding: 1rem;
}
ul{
list-style: none;
}
li{
margin: 15px 50px;
}
label{
font-size: 1.3rem;
}
#submit-btn{
width: 100%;
padding: 1rem;
font-size: 1.5rem;
border: none;
background: #3498db;
color: white;
display: block;
}
#submit-btn:hover{
width: 100%;
padding: 1rem;
font-size: 1.5rem;
border: none;
background: #2980b9;
color: white;
display: block;
}