Fix
This commit is contained in:
parent
bc21041fc7
commit
c615ec112a
|
@ -56,10 +56,7 @@
|
||||||
|
|
||||||
.post-entry {
|
.post-entry {
|
||||||
position: relative;
|
position: relative;
|
||||||
/** margin-bottom: var(--gap); **/
|
|
||||||
padding: calc(var(--gap)*1.5);
|
padding: calc(var(--gap)*1.5);
|
||||||
/** background: var(--entry);
|
|
||||||
border: 1px solid var(--border); **/
|
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
transition: transform 0.1s;
|
transition: transform 0.1s;
|
||||||
}
|
}
|
||||||
|
@ -74,7 +71,7 @@
|
||||||
|
|
||||||
.entry-header h2 {
|
.entry-header h2 {
|
||||||
font-weight: 450;
|
font-weight: 450;
|
||||||
font-size: 21px;
|
font-size: 20px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,11 +40,10 @@
|
||||||
|
|
||||||
.post-content {
|
.post-content {
|
||||||
padding-top: var(--gap);
|
padding-top: var(--gap);
|
||||||
font-size: 15.5px;
|
font-size: 16px;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
color: var(--content);
|
color: var(--content);
|
||||||
line-height: 2;
|
line-height: 2;
|
||||||
font-family: "Monaspace Neon", "Pretendard", sans-serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-content h3,
|
.post-content h3,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
|
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;0,400;1,300;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Sans+KR:wght@200;300;400;500;600;700&display=swap');
|
||||||
|
|
||||||
@font-face {
|
/*@font-face {
|
||||||
font-family: "Source Sans 3";
|
font-family: "Source Sans 3";
|
||||||
src: url("/fonts/SourceSans3-Regular.woff2");
|
src: url("/fonts/SourceSans3-Regular.woff2");
|
||||||
}
|
}
|
||||||
|
@ -45,7 +46,7 @@
|
||||||
src: url("/fonts/Monaspace-Neon.woff2");
|
src: url("/fonts/Monaspace-Neon.woff2");
|
||||||
font-weight: 250;
|
font-weight: 250;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
*,
|
*,
|
||||||
::after,
|
::after,
|
||||||
::before {
|
::before {
|
||||||
|
@ -74,7 +75,7 @@ h2 { font-size: 18px; }
|
||||||
h3 { font-size: 16px; }
|
h3 { font-size: 16px; }
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "Source Sans 3", "Line Sans", sans-serif !important;
|
font-family: "Lato", "Pretendard", sans-serif !important;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
@ -82,7 +83,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-family: "Jetbrains Mono", "Monaco", "Cascadia Code", monospace !important;
|
font-family: "Jetbrains Mono", monospace !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
article,
|
article,
|
||||||
|
|
Loading…
Reference in New Issue