-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (48 loc) · 966 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
:root {
--primaryColor: #635985;
--borderColor: #18122B;
--fontColor: #ECF2FF;
}
body {
margin: 0;
margin-top: 20px;
padding: 10px;
font-family: 'Poppins', sans-serif;
min-width: 400px;
}
input {
width: 100%;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
padding: 10px 10px;
font-size: 16px;
font-weight: 600;
border: 2px solid var(--borderColor);
border-radius: 4px;
}
button {
background-color: var(--primaryColor);
color: var(--fontColor);
border-radius: 4px;
margin-top: 5px;
font-family: 'Poppins', sans-serif;
padding: 5px;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
}
ul {
list-style: none;
font-size: 16px;
font-weight: 600;
padding-left: 5px;
}
li a {
text-decoration: none;
color: #735ac7
}
#clearButton {
background-color: red;
color: white;
border: 1px solid rgb(50, 168, 119);
}