-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcustom.css
More file actions
83 lines (70 loc) · 1.53 KB
/
custom.css
File metadata and controls
83 lines (70 loc) · 1.53 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
html[data-theme=dark] {
--pst-color-primary: #ee9040;
--plt-color-secondary: #459db9;
--pst-color-link: #459db9;
}
html[data-theme=light] {
--pst-color-primary: #ee9040;
--plt-color-secondary: #459db9;
--pst-color-link: #459db9;
}
body .bd-article-container {
max-width: 100em !important;
}
.sponsor {
height: 100px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 5px;
}
.things-in-a-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 12px;
}
/* Contributor avatar grid */
.contributors-grid .sd-card,
.contributors-grid .sd-card-body {
background: var(--pst-color-on-background) !important;
border: none !important;
box-shadow: none !important;
text-align: center;
}
.contributors-grid .sd-card {
border-radius: 8px;
overflow: hidden;
}
.contributors-grid .sd-card-img-top {
width: 80px;
height: 80px;
border-radius: 50% !important;
object-fit: cover;
margin: 0.75rem auto 0;
display: block;
}
.contributors-grid .sd-card-body {
padding: 0.4rem 0.25rem 0.4rem;
}
.contributors-grid .sd-card-title {
font-size: 0.8rem !important;
font-weight: 500 !important;
line-height: 1.3;
margin-bottom: 0 !important;
}
.blog-post-author {
border-left: 3px solid var(--pst-color-primary);
color: var(--pst-color-text-muted);
font-size: 1.12rem;
line-height: 1.5;
margin-top: -0.2rem;
margin-bottom: 2rem;
padding-left: 0.8rem;
}
.blog-post-author a {
font-weight: 600;
}
.blog-post-author .line:nth-child(2) {
font-size: 1rem;
}