website/static/custom.css

103 lines
1.6 KiB
CSS
Raw Normal View History

2023-10-21 12:46:00 +03:00
:root {
--font: 'Onest', sans-serif;
--bg-color: #15171f;
--font-color: #dadada;
2024-07-23 10:49:55 +03:00
--nav-font-color: white;
--font-size: 1.2rem;
2023-10-21 12:46:00 +03:00
}
@font-face {
src: url("./fonts/Onest-Bold.ttf");
font-family: "Onest";
font-weight: 600;
}
@font-face {
src: url("./fonts/Onest-Medium.ttf");
font-family: "Onest";
font-weight: 400;
}
@font-face {
src: url("./fonts/Onest-Regular.ttf");
font-family: "Onest";
font-weight: 200;
}
body {
2024-07-23 10:49:55 +03:00
margin: 1rem auto;
2023-10-21 12:46:00 +03:00
background-color: var(--bg-color);
font-family: var(--font);
color: var(--font-color);
font-size: var(--font-size);
font-weight: 200;
2024-07-23 10:49:55 +03:00
line-height: 1.8;
max-width: 64rem;
padding: 0 1rem;
2024-07-23 11:21:16 +03:00
max-width: 80%;
2023-10-21 12:46:00 +03:00
}
2024-07-23 10:49:55 +03:00
nav * {
margin-right: 1rem;
color: var(--nav-font-color);
2023-10-21 12:46:00 +03:00
}
2024-01-22 12:01:17 +03:00
img {
2024-01-22 20:10:36 +03:00
max-inline-size: 80%;
2024-01-22 12:24:11 +03:00
block-size: auto;
2024-01-22 13:07:13 +03:00
display: block;
margin-left: auto;
margin-right: auto;
2024-01-22 12:01:17 +03:00
}
2023-10-21 12:46:00 +03:00
.mc {
2024-03-13 20:35:24 +03:00
overflow-x: auto;
2023-10-21 12:46:00 +03:00
}
/* РАЗМЕТКА */
.mc h1, .mc h2, .mc h3, .mc h4, .mc h5 {
color: #fff;
}
.mc a {
color: #fff;
font-weight: 400;
}
.mc a:hover {
text-decoration: underline;
}
.mc code {
color: #fff;
background-color: #0d0e13;
border-radius: 0.1rem;
}
2023-12-27 12:17:31 +03:00
.mc pre {
background-color: #0d0e13;
}
2023-10-21 12:46:00 +03:00
.mc table {
display: block;
2024-03-13 20:35:24 +03:00
overflow-x: auto;
2023-10-21 12:46:00 +03:00
width: 100%;
flex-direction: column;
2024-03-13 19:57:11 +03:00
text-align: center;
2023-10-21 12:46:00 +03:00
border-collapse: collapse;
white-space: nowrap;
margin-bottom: 15px;
}
.mc table * {
}
.mc table td, table th {
padding: 15px;
border-bottom: 1px solid #d6d6d6;
}
2024-04-09 19:56:42 +03:00
img[alt=play_button_exp] { width: 120px; }