testing-docs.cz/style.css

152 lines
2.2 KiB
CSS
Raw Normal View History

2023-12-15 22:34:06 +00:00
:root {
2024-01-11 17:08:50 +00:00
--special_black: rgb(11, 2, 2);
--special_white: white;
--special_grey: grey;
--special_black_original: black;
2023-12-15 22:34:06 +00:00
}
2024-01-11 17:08:50 +00:00
/* Body */
2023-12-13 22:43:05 +00:00
body {
2024-01-11 17:08:50 +00:00
background-color: var(--special_black);
color: var(--special_white);
width: calc(100% - 32px);
max-width: 1200px;
margin: auto;
}
@media screen and (max-width: 600px) {
body {
width: calc(100% - 16px);
}
2023-12-13 22:43:05 +00:00
}
.menu-item {
2024-01-11 17:08:50 +00:00
display: inline-block;
width: 200px;
height: 20px;
2024-01-11 20:10:33 +00:00
/* position: static;
text-align: center; */
}
@media screen and (max-width: 600px) {
.menu {
text-align: center;
}
2023-12-13 22:43:05 +00:00
}
.flexbox {
2024-01-11 17:08:50 +00:00
display: flex;
2023-12-13 22:43:05 +00:00
}
.navigation {
2024-01-11 17:08:50 +00:00
flex: 1;
/* margin: 0px 0px 0px 50px; */
padding: 25px;
/* margin-top: 20px; */
2023-12-13 22:43:05 +00:00
}
.content {
2024-01-11 17:08:50 +00:00
flex: 3;
margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
/* Nastavení sloupcu na sloupce mobil */
.flexbox {
flex-direction: column;
}
/* ˇPořadí zobrazení */
.navigation {
order: -1;
2024-01-11 20:10:33 +00:00
/* flex-direction: column; */
align-self: center;
2024-01-11 17:08:50 +00:00
}
/* škrývání */
2024-01-11 17:16:08 +00:00
/* .navigation:hover .dropdown-content {
2024-01-11 17:08:50 +00:00
display: block;
2024-01-11 17:16:08 +00:00
} */
2024-01-11 17:08:50 +00:00
/* roletka posuvník */
2024-01-11 20:10:33 +00:00
/* .dropdown-content {
overflow: auto; */
/* max-height: 100px; or any other value */
2024-01-11 17:08:50 +00:00
.content {
order: 1;
flex-direction: column;
2024-01-12 02:09:06 +00:00
padding: 15px;
2024-01-11 17:08:50 +00:00
}
2023-12-13 22:43:05 +00:00
}
2023-12-16 14:35:40 +00:00
.articles {
2024-01-11 17:08:50 +00:00
margin: 0px 50px 0px 0px;
margin-top: 25px;
}
2024-01-11 17:16:08 +00:00
/* Namobilu nezobrazí articles */
2024-01-11 17:08:50 +00:00
@media screen and (max-width: 600px) {
.articles {
display: none;
}
2023-12-16 14:35:40 +00:00
}
2023-12-14 11:31:39 +00:00
2023-12-13 22:43:05 +00:00
footer {
2024-01-11 17:08:50 +00:00
position: fixed;
bottom: 0;
2023-12-13 22:43:05 +00:00
}
.big-text {
2024-01-11 17:08:50 +00:00
font-size: 40px;
text-align: center;
2023-12-13 22:43:05 +00:00
}
h1 {
2024-01-11 17:08:50 +00:00
font-family: cursive;
margin: 0px 0px 0px 30px;
2023-12-13 22:43:05 +00:00
}
h2 {
2024-01-11 17:08:50 +00:00
font-family: cursive;
margin: 0px 0px 0px 30px;
2023-12-13 22:43:05 +00:00
}
2024-01-07 23:18:56 +00:00
/*.link-white*/
2023-12-13 23:23:50 +00:00
.button {
2024-01-11 17:08:50 +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 {
2024-01-11 17:08:50 +00:00
border: 1px solid var(--special_white);
padding: 10px;
2023-12-14 15:20:13 +00:00
}
2023-12-14 21:30:37 +00:00
.code-box {
2024-01-11 17:08:50 +00:00
border: 1px solid var(--special_white);
padding: 10px;
background-color: var(--special_grey);
font-family: monospace;
color: var(--special_black_original);
font-weight: bold;
border-radius: 8px;
2023-12-27 20:07:23 +00:00
}
.not-dot {
2024-01-11 17:08:50 +00:00
list-style-type: none;
2023-12-14 21:30:37 +00:00
}
2023-12-28 21:50:39 +00:00
.link {
2024-01-11 17:08:50 +00:00
color: var(--special_white);
/*cursor: unset;*/
2023-12-28 21:50:39 +00:00
}
2024-01-06 17:30:09 +00:00
.strong-text {
2024-01-11 17:08:50 +00:00
font-weight: bold;
2024-01-06 17:30:09 +00:00
}
.link-black {
2024-01-11 17:08:50 +00:00
color: var(--special_black_original);
2024-01-07 23:18:56 +00:00
}