-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (97 loc) · 1.47 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@font-face {
font-family: 'Iosevka Custom';
src: url('./assets/fonts/IosevkaCustom-Regular.ttf');
}
:root {
background: #272e33;
color: #d3c6aa;
font-family: 'Iosevka Custom', monospace;
}
body {
display: grid;
grid-template-rows: 6rem 1fr 12rem;
min-height: 98vh;
}
header {
display: grid;
grid-template-rows: 3rem 1rem;
justify-content: center;
align-content: center;
text-align: center;
padding-bottom: 2rem;
}
#welcome-msg {
grid-area: welcome;
}
#latest {
grid-area: latest;
}
#all {
grid-area: all;
}
#rss {
grid-area: rss;
}
.date {
color: #7a8478;
font-size: 90%;
}
main {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1.5rem;
grid-template-areas:
"welcome latest"
"welcome all"
"welcome rss";
}
footer {
text-align: center;
color: #7a8478;
padding-top: 6rem;
}
a {
color: #7fbbb3;
}
a:hover {
color: #384b55;
}
h2, h3, h4 {
color: #dbbc7f;
}
.quote {
padding: 1rem 1rem 0 1rem;
}
.quote-credit {
color: #4f5b58;
text-align: right;
}
.command {
background: #2e383c;
font-size: 120%;
padding: 0.4rem;
border-style: solid;
border-color: #374145;
border-width: 0 0 0 4px;
}
span {
background: #2e383c;
padding: 0.1rem 0.3rem 0.1rem 0.3rem;
font-size: 110%;
font-family: monospace;
}
#search {
text-align: center;
}
#search-input {
width: 40%;
border: 1px solid #414b50;
margin-top: 1rem;
padding: 0.2rem;
background: #3c4841;
color: #d3c6aa;
}
#my-posts {
list-style-type: none;
text-align: left;
}