-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (49 loc) · 821 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
padding: .5rem;
margin: 0;
font-family: 'Poppins', sans-serif;
}
body{
min-width: 400px;
}
.flex{
display: flex;
align-items: center;
}
input{
width: 100%;
box-sizing: border-box;
border: 2px solid #00203F;
}
input:hover{
border: 2px solid #ADEFD1;
}
input::selection{
background-color: #ADEFD1;
}
button{
text-transform: uppercase;
border-radius: 1.5rem;
margin-top: .5rem;
padding: .5rem 1rem;
background: #00203F;
color: #ADEFD1;
transition: 0.2s;
cursor: pointer;
}
button:hover{
background: #ADEFD1;
color: #00203F;
}
ul{
list-style: none;
padding-left: 0;
margin-top: 1rem;
}
li{
margin-top: -1rem;
}
a{
color: #00203F;
}