testing-docs.cz/style.css
2023-12-16 15:35:40 +01:00

71 lines
812 B
CSS

:root {
--special_black: rgb(11, 2, 2);
}
body {
background-color: var(--special_black);
color: white;
}
.menu-item {
display: inline-block;
width: 200px;
height: 20px;
position: static;
text-align: center;
}
.flexbox {
display: flex;
}
.navigation {
flex: 1;
margin: 0px 0px 0px 50px;
}
.content {
flex: 3;
}
.articles {
margin: 0px 50px 0px 0px;
}
footer {
position: fixed;
bottom: 0;
}
.big-text {
font-size: 40px;
}
h1 {
font-family: cursive;
margin: 0px 0px 0px 30px;
}
h2 {
font-family: cursive;
margin: 0px 0px 0px 30px;
}
.button {
color: white;
}
td,
th {
border: 1px solid white;
padding: 10px;
}
.code-box {
border: 1px solid white;
padding: 10px;
background-color: gray;
font-family: monospace;
color: black;
font-weight: bold;
}