testing-docs.cz/style.css

76 lines
873 B
CSS
Raw Normal View History

2023-12-15 22:34:06 +00:00
:root {
--special_black: rgb(11, 2, 2);
}
2023-12-13 22:43:05 +00:00
body {
2023-12-15 22:34:06 +00:00
background-color: var(--special_black);
2023-12-13 22:43:05 +00:00
color: white;
}
.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;
}
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 {
color: white;
}
2023-12-14 15:20:13 +00:00
2023-12-14 15:57:48 +00:00
td,
th {
border: 1px solid white;
padding: 10px;
2023-12-14 15:20:13 +00:00
}
2023-12-14 21:30:37 +00:00
.code-box {
border: 1px solid white;
padding: 10px;
background-color: gray;
font-family: monospace;
2023-12-15 22:34:06 +00:00
color: black;
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
}