fix: simplification stylesheet

This commit is contained in:
Kazhnuz 2024-09-22 22:37:52 +02:00
parent 3d009750d0
commit fe54b8668e

View file

@ -4,9 +4,15 @@
--text-color: #212529; --text-color: #212529;
--border-color: rgba(0,0,0,0.1); --border-color: rgba(0,0,0,0.1);
--hover-color: rgba(0,0,0,0.05); --hover-color: rgba(0,0,0,0.05);
--accent-color-dark: #1971c2;
--accent-color-light: #d0ebff;
--background-color: #f8f9fa; --background-color: #f8f9fa;
--well-color: #e9ecef; --well-color: #e9ecef;
--accent-color: #1971c2;
--accent-color: var(--accent-color-dark);
--accent-color-back: var(--accent-color-light);
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@ -14,7 +20,8 @@
--text-color: #f1f3f5; --text-color: #f1f3f5;
--background-color: #212529; --background-color: #212529;
--well-color: #343a40; --well-color: #343a40;
--accent-color: #d0ebff; --accent-color: var(--accent-color-light);
--accent-color-back: var(--accent-color-dark);
} }
} }
@ -22,12 +29,6 @@
// make code more readable // make code more readable
$lineheight: 1rem; $lineheight: 1rem;
@mixin paragraph() {
padding:0;
margin:0;
margin-bottom: $lineheight;
}
html { html {
font-family: var(--font-family); font-family: var(--font-family);
text-align: left; text-align: left;
@ -59,12 +60,32 @@ nav ul {
} }
} }
strong { // Typography
font-weight: 600;
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
hr,
table,
.tabs,
details
main,
article {
padding: 0;
margin: 0 0 1rem 0;
} }
em {
font-style: italic; p {
&:last-child {
margin-bottom:0;
}
} }
a { a {
@ -77,44 +98,24 @@ a {
} }
} }
p, time { :is(ul, ol) > :is(ul, ol) {
@include paragraph(); margin-bottom:0;
&:last-child {
margin-bottom:0;
}
}
ul, ol {
@include paragraph();
ul {
margin-bottom:0;
}
li {
margin-left: $lineheight;
}
}
/* sup, sub */
sup, sub {
margin:0;
padding:0;
line-height:$lineheight;
font-size: 0.8rem;
vertical-align:baseline;
position:relative;
}
sup {
top: -$lineheight/4;
}
sub {
top: $lineheight/4;
} }
::selection, ::-moz-selection { background: var(--accent-color); color: var(--background-color); } li {
margin-left: $lineheight;
}
::selection, ::-moz-selection {
background: var(--accent-color-back);
color: var(--text-color);
}
hr {
border:0;
border-bottom: 1px solid var(--border-color);
}
/* ------------------ TITLES ------------------- */ /* ------------------ TITLES ------------------- */
@ -126,10 +127,7 @@ sub {
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
text-align: left; text-align: left;
line-height: 1; line-height: 1;
padding:0;
margin:0;
font-weight:400; font-weight:400;
margin-bottom: $lineheight;
} }
h1 { h1 {
@ -158,43 +156,29 @@ h6 {
/* ------------------ HR ------------------- */ /* ------------------ HR ------------------- */
hr {
border-top: 0px;
border-left: 0px;
border-right: 0px;
border-bottom: 1px;
border-color: var(--border-color);
border-style: solid;
padding:0;
margin:0;
margin-bottom: $lineheight;
}
/* ------------------ QUOTE ------------------- */ /* ------------------ QUOTE ------------------- */
@mixin well() { .well,
border-width: 0 0 0 $lineheight/4; blockquote,
border-style: solid; pre,
border-radius: $lineheight/8; .alert,
margin:0; .code,
margin-bottom: $lineheight; .menu,
padding: $lineheight; .breadcrumb,
font-size:1.1rem; .toolbar,
details {
max-width: 100%; border: 0;
overflow: auto; border-radius: 6px;
margin: 0 0 1rem 0;
padding: .75rem;
max-width: 100%;
background-color: var(--well-color);
border: 0;
border-left: 6px solid var(--accent-color);
} }
blockquote { pre, code {
@include well(); font-family: var(--font-family-monospace);
border-color: var(--accent-color);
background-color:var(--well-color);
}
pre {
@include well();
border-color: var(--accent-color);
background-color:var(--well-color);
} }
code { code {
@ -210,16 +194,6 @@ mark {
border-radius: 0.2em; border-radius: 0.2em;
padding:0 $lineheight/4 0 $lineheight/4; padding:0 $lineheight/4 0 $lineheight/4;
background-color:rgba(255,255,0,0.33); background-color: var(--accent-color-back);
color: inherit; color: inherit;
} }
/* ------------------ SPECIAL STYLING ------------------- */
.time {
font-style: italic;
text-align: right;
width: 100%;
display: block;
font-size: 0.9rem;
}