moineau/scss/clear-typography.scss

199 lines
3.3 KiB
SCSS
Raw Normal View History

:root {
--font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Cantarell, Roboto, Oxygen, Ubuntu, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
--font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
--text-color: #212529;
2024-09-22 19:01:31 +02:00
--border-color: rgba(0,0,0,0.1);
--hover-color: rgba(0,0,0,0.05);
2024-09-22 22:37:52 +02:00
--accent-color-dark: #1971c2;
--accent-color-light: #d0ebff;
--background-color: #f8f9fa;
--well-color: #e9ecef;
2024-09-22 22:37:52 +02:00
--accent-color: var(--accent-color-dark);
--accent-color-back: var(--accent-color-light);
}
@media (prefers-color-scheme: dark) {
:root {
--text-color: #f1f3f5;
--background-color: #212529;
--well-color: #343a40;
2024-09-22 22:37:52 +02:00
--accent-color: var(--accent-color-light);
--accent-color-back: var(--accent-color-dark);
}
}
2018-10-13 16:49:21 +02:00
// Don't change this one, it's just to
// make code more readable
2024-09-22 18:55:39 +02:00
$lineheight: 1rem;
html {
font-family: var(--font-family);
2018-10-13 16:49:21 +02:00
text-align: left;
2024-09-22 18:33:17 +02:00
font-size: 17px;
background-color: var(--background-color);
accent-color: var(--accent-color);
2024-09-22 18:55:39 +02:00
line-height: 1.6rem;
}
body {
color: var(--text-color);
2018-10-13 16:49:21 +02:00
font-weight: 400;
2024-09-22 18:33:17 +02:00
max-width: 800px;
2024-09-22 17:59:41 +02:00
padding:1rem;
margin: auto;
2018-10-13 16:49:21 +02:00
}
2024-09-22 18:55:39 +02:00
nav ul {
display: flex;
padding: .5rem 0;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
li {
list-style-type: none;
margin:0;
a, span {
padding: .5rem;
}
}
}
2024-09-22 22:37:52 +02:00
// Typography
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
hr,
table,
.tabs,
details
main,
article {
padding: 0;
margin: 0 0 1rem 0;
2018-10-13 16:49:21 +02:00
}
2024-09-22 22:37:52 +02:00
p {
&:last-child {
margin-bottom:0;
}
2018-10-13 16:49:21 +02:00
}
a {
color: var(--accent-color);
2018-10-13 16:49:21 +02:00
text-decoration:none;
2024-09-22 19:01:31 +02:00
border-radius: 3px;
padding: 1px;
&:hover {
background-color: var(--hover-color);
}
2018-10-13 16:49:21 +02:00
}
2024-09-22 22:37:52 +02:00
:is(ul, ol) > :is(ul, ol) {
margin-bottom:0;
}
2024-09-22 22:37:52 +02:00
li {
margin-left: $lineheight;
}
2024-09-22 22:37:52 +02:00
::selection, ::-moz-selection {
background: var(--accent-color-back);
color: var(--text-color);
}
2024-09-22 22:37:52 +02:00
hr {
border:0;
border-bottom: 1px solid var(--border-color);
}
2018-10-13 16:49:21 +02:00
/* ------------------ TITLES ------------------- */
2019-11-04 15:57:00 +01:00
@mixin title($size, $weight) {
2024-09-22 18:10:43 +02:00
font-size: $size;
2018-10-13 17:13:38 +02:00
font-weight: $weight;
}
2024-09-22 18:10:43 +02:00
h1, h2, h3, h4, h5, h6 {
text-align: left;
2024-09-22 18:10:43 +02:00
line-height: 1;
2018-10-13 16:49:21 +02:00
font-weight:400;
}
h1 {
2024-09-22 18:10:43 +02:00
@include title(2.3333333rem, 700);
2018-10-13 16:49:21 +02:00
}
h2 {
2024-09-22 18:10:43 +02:00
@include title(2rem, 700);
2018-10-13 16:49:21 +02:00
}
h3 {
2024-09-22 18:10:43 +02:00
@include title(1.5rem, 700);
2018-10-13 16:49:21 +02:00
}
h4 {
2024-09-22 18:10:43 +02:00
@include title(1.5rem, 600);
2018-10-13 16:49:21 +02:00
}
h5 {
2024-09-22 18:10:43 +02:00
@include title(1.333333rem, 600);
2018-10-13 16:49:21 +02:00
}
h6 {
2024-09-22 18:10:43 +02:00
@include title(1.1rem, 600);
2018-10-13 16:49:21 +02:00
}
/* ------------------ HR ------------------- */
/* ------------------ QUOTE ------------------- */
2024-09-22 22:37:52 +02:00
.well,
blockquote,
pre,
.alert,
.code,
.menu,
.breadcrumb,
.toolbar,
details {
border: 0;
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);
}
pre, code {
font-family: var(--font-family-monospace);
2018-10-13 16:49:21 +02:00
}
code {
background-color:var(--well-color);
padding: 5px;
border-radius: 3px;
}
2018-10-13 17:05:57 +02:00
2018-10-13 16:49:21 +02:00
/* ------------------ SPECIAL STYLING ------------------- */
mark {
border-radius: 0.2em;
padding:0 $lineheight/4 0 $lineheight/4;
2018-10-13 16:49:21 +02:00
2024-09-22 22:37:52 +02:00
background-color: var(--accent-color-back);
2018-10-13 16:49:21 +02:00
color: inherit;
2024-09-22 22:37:52 +02:00
}