testing-docs.cz/style.css

91 lines
1.2 KiB
CSS
Raw Normal View History

2023-12-15 22:34:06 +00:00
:root {
--special_black: rgb(11, 2, 2);
2023-12-28 12:59:20 +00:00
--special_white: white;
--special_grey: grey;
--special_black_original: black;
2023-12-15 22:34:06 +00:00
}
2023-12-13 22:43:05 +00:00
body {
2023-12-15 22:34:06 +00:00
background-color: var(--special_black);
2023-12-28 12:59:20 +00:00
color: var(--special_white);
2023-12-13 22:43:05 +00:00
}
.menu-item {
display: inline-block;
width: 200px;
height: 20px;
position: static;
text-align: center;
}
.flexbox {
display: flex;
}
.navigation {
flex: 1;
2023-12-16 14:35:40 +00:00
margin: 0px 0px 0px 50px;
2023-12-13 22:43:05 +00:00
}
.content {
flex: 3;
2024-01-03 20:46:11 +00:00
margin-bottom: 20px;
2023-12-13 22:43:05 +00:00
}
2023-12-16 14:35:40 +00:00
.articles {
margin: 0px 50px 0px 0px;
}
2023-12-14 11:31:39 +00:00
2023-12-13 22:43:05 +00:00
footer {
position: fixed;
bottom: 0;
}
.big-text {
font-size: 40px;
}
h1 {
font-family: cursive;
2023-12-16 14:35:40 +00:00
margin: 0px 0px 0px 30px;
2023-12-13 22:43:05 +00:00
}
h2 {
font-family: cursive;
2023-12-16 14:35:40 +00:00
margin: 0px 0px 0px 30px;
2023-12-13 22:43:05 +00:00
}
2023-12-13 23:23:50 +00:00
.button {
2023-12-28 12:59:20 +00:00
color: var(--special_white);
2023-12-13 23:23:50 +00:00
}
2023-12-14 15:20:13 +00:00
2023-12-14 15:57:48 +00:00
td,
th {
2023-12-28 12:59:20 +00:00
border: 1px solid var(--special_white);
2023-12-14 15:57:48 +00:00
padding: 10px;
2023-12-14 15:20:13 +00:00
}
2023-12-14 21:30:37 +00:00
.code-box {
2023-12-28 12:59:20 +00:00
border: 1px solid var(--special_white);
2023-12-14 21:30:37 +00:00
padding: 10px;
2023-12-28 12:59:20 +00:00
background-color: var(--special_grey);
2023-12-14 21:30:37 +00:00
font-family: monospace;
2023-12-28 12:59:20 +00:00
color: var(--special_black_original);
2023-12-15 22:34:06 +00:00
font-weight: bold;
2023-12-27 20:07:23 +00:00
border-radius: 8px;
}
.not-dot {
list-style-type: none;
2023-12-14 21:30:37 +00:00
}
2023-12-28 21:50:39 +00:00
.link {
color: var(--special_white);
}
2024-01-06 17:30:09 +00:00
.strong-text {
font-weight: bold;
}
.link-black {
color: var(--special_black_original);
}