Skip to content

Commit ff646a4

Browse files
committed
adds some tweaks to blockquotes
1 parent ab24241 commit ff646a4

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

_sass/_base.scss

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ a, table.table a {
2424
}
2525

2626
blockquote {
27-
background: var(--global-bg-color);
28-
border-left: 2px solid var(--global-theme-color);
29-
margin: 1.5em 10px;
30-
padding: 0.5em 10px;
31-
font-size: 1.2rem;
32-
}
27+
background: rgba(0, 0, 0, 0.05);
28+
border-left: 5px solid var(--global-theme-color);
29+
margin: 1.5em 10px;
30+
padding: 0.5em 10px;
31+
font-size: .95rem;
32+
border-radius: 5px;
33+
box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
3334

35+
}
3436
// Math
3537

3638
.equation {

_sass/_distill.scss

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,16 @@ d-article {
2929
border-bottom-color: var(--global-hover-color) !important;
3030
}
3131
b i {
32-
display: inline;
32+
display: inline;
33+
}
34+
blockquote {
35+
background: rgba(255, 255, 255, 0.65);
36+
border-left: 100px solid var(--global-theme-color);
37+
margin: 1.5em 10px;
38+
padding: 0.5em 10px;
39+
font-size: .95rem;
40+
border-radius: 15px;
41+
box-shadow: 0px 0px 2px rgba(0,0,0,0.8);
3342
}
3443

3544
d-contents {

0 commit comments

Comments
 (0)