-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 807 Bytes
/
style.css
File metadata and controls
59 lines (49 loc) · 807 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
56
body{
background: #4aaaa5;
}
.wrapper{
width: 300px;
background: #fff;
color: black;
margin: 40px auto;
border-radius: 6px;
padding: 10px 30px;
font-family: "Poppins", sans-serif;
}
h1{
text-align: center;
}
h2{
text-align: center;
}
input{
display: block;
width: 90%;
padding: 10px;
font-size: 14px;
outline: none;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid #4aaaa5;
}
button{
width: 98%;
border: none;
outline: none;
height: 40px;
border-radius: 5px;
background: #4aaaa5;
cursor: pointer;
color: #fff;
font-size: 17px;
}
p{
display: block;
text-align: center;
border-radius: 6px;
}
p a{
color: #4aaaa5;
display:block;
text-decoration:underline;
}