forked from BulmaTemplates/bulma-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghost-blog.css
More file actions
87 lines (69 loc) · 1.2 KB
/
Copy pathghost-blog.css
File metadata and controls
87 lines (69 loc) · 1.2 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
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
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif&family=Nunito+Sans:wght@400;600&display=swap');
.va {
display: flex;
align-items: center;
}
html {
font-family: 'Nunito Sans', sans-serif;
color: white;
}
a {
color: #3b7adf;
}
a:hover {
text-decoration: underline;
color: #3b7adf;
}
hr {
background: #24272c;
}
.hero {
background: #060606;
}
.title,
.subtitle {
color: white;
}
.navbar .navbar-item {
color: #e4e2ff;
}
.navbar .navbar-item.is-active {
color: #e4e2ff;
font-weight: 700;
}
.navbar .navbar-item:hover {
background: transparent;
color: white;
}
.navbar .navbar-item a {
margin-left: 1rem;
color: #e4e2ff;
}
.blog-posts {
min-height: 100vh;
background: #191b1f;
padding-top: 4rem;
padding-bottom: 10rem;
}
.blog-posts article {
padding: 1.5rem;
}
.blog-posts .post img {
border-radius: 6px;
}
.blog-posts .post .post-category {
color: #3b7adf;
}
.blog-posts .post .post-title {
font-size: 2.2rem;
}
.blog-posts .post .post-excerpt {
line-height: 1.5rem;
letter-spacing: .03rem;
font-size: 1.2rem;
font-family: 'IBM Plex Serif', serif;
color: #92a3ab;
}
.blog-posts .post .featured .featured-image img {
height: 380px;
}