-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.css
More file actions
50 lines (44 loc) · 1.09 KB
/
Copy pathstart.css
File metadata and controls
50 lines (44 loc) · 1.09 KB
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
:root {
--text-color: whitesmoke;
--body-background-color: #2f3133;
--search-bar-color: #262729;
--boxes-color: #262729;
--font: "Roboto Mono", monospace;
--radius: 10px;
--link-color: grey;
--body-margin: 17%;
}
body {
background-color: var(--body-background-color);
color: var(--text-color);
font-family: var(--font);
text-align: center;
justify-content: center;
align-items: center;
margin: var(--body-margin);
}
input {
background-color: var(--search-bar-color);
font-family: var(--font);
border: none;
border-radius: var(--radius);
color: var(--text-color);
width: 560px;
height: 42px;
font-size: large;
text-indent: 7px;
}
.social, .dev, .other, .subreddits {
background-color: var(--boxes-color);
border-radius: var(--radius);
width: 200px;
display: inline-block;
text-align: center;
justify-content: center;
align-items: center;
}
a {
color: var(--link-color);
text-decoration: none;
}