-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (48 loc) · 1000 Bytes
/
Copy pathstyles.css
File metadata and controls
55 lines (48 loc) · 1000 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
font-family: 'Poppins';
background-color: #C2DEDC;
}
h1 {
text-align: center;
margin-top: 7%;
}
.main-form {
width: 50%;
height: 50vh;
background-color: #00C4FF;
margin-left: 25%;
margin-top: 4%;
border-radius: 10px;
}
.main-form h2 {
text-align: center;
color: white;
margin-bottom: 70px;
padding-top: 50px;
}
input {
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
border: none;
background-color: #FFE7A0;
border-radius: 10px;
margin-left: 25%;
width: 40%;
}
button {
padding-top: 20px;
padding-bottom: 20px;
border: none;
background-color: #30A2FF;
border-radius: 10px;
color: white;
cursor: pointer;
padding-left: 10px;
padding-right: 10px;
}
button:hover {
background-color: #E893CF;
transition: 0.5s;
}