-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
89 lines (77 loc) · 1.39 KB
/
styles.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
width: 250px;
padding: 0;
margin: 0;
border: 2px solid RGB(42, 46, 47);
overflow: -moz-hidden-unscrollable;
}
h2,
p,
label {
margin: 0;
padding: 0;
font-size: 1rem;
color: RGB(42, 46, 47);
font-family: "Poppins", sans-serif;
}
h2 {
font-size: 1.25rem;
margin: 0.25em 0;
text-align: center;
}
p {
text-align: center;
font-family: "Source Code Pro", monospace;
}
label {
display: block;
text-align: left;
font-weight: bold;
}
form {
width: 100%;
padding: 1em;
padding-top: 0;
}
form input {
font-family: "Source Code Pro", monospace;
color: RGB(42, 46, 47);
font-weight: normal;
margin-top: 0.25em;
border: none;
border-bottom: 1px solid RGB(42, 46, 47);
box-sizing: border-box;
padding: 0.25em 0;
outline: none;
font-size: 0.85rem;
width: 90%;
}
input::placeholder {
color: RGB(42, 46, 47);
opacity: 0.69;
}
button {
width: 90%;
padding: 0.5em 0.35em;
font-size: 1.15rem;
border: none;
cursor: pointer;
font-family: "Poppins", sans-serif;
}
#apply-button {
background: RGB(42, 46, 47);
color: RGB(249, 246, 239);
}
#reset-button {
color: RGB(42, 46, 47);
background: RGB(249, 246, 239);
margin-top: 0.5em;
}
.flex {
display: flex;
justify-content: center;
align-items: center;
}
.flex img {
margin-right: 0.5em;
}