-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (36 loc) · 838 Bytes
/
style.css
File metadata and controls
47 lines (36 loc) · 838 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
* {
padding: 0px;
margin: 0px;
}
:root{
--parag-font-family: IBM Plex Sans;
--parag-color: #217ac0;
--title-font-family: IBM Plex Sans;
--title-color: #217ac0;
--backg-color: #ffffff;
--box-shadow: 3px 0 10px #0003;
--height-100vh: 100vh;
--width-100vw: 100vw;
}
.content {
background-color: var(--backg-color);
min-height: var(--height-100vh);
font-family: var(--parag-font-family);
color: var(--parag-color);
transition: all .3s;
}
/* Content modifiers */
.content--default {
}
.content--dark {
--parag-color: #ffffff;
--title-color: #cecece;
--backg-color: #292929;
}
/* Posts container element */
.content__posts-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-gap: 20px;
padding: 20px;
}