testing-docs.cz/style.css

60 lines
571 B
CSS
Raw Normal View History

2023-12-13 22:43:05 +00:00
body {
background-color: black;
color: white;
}
.menu-item {
display: inline-block;
width: 200px;
height: 20px;
position: static;
text-align: center;
}
.flexbox {
display: flex;
}
.navigation {
flex: 1;
}
.content {
flex: 3;
}
2023-12-14 11:31:39 +00:00
/* .articles {
flex: 2;
} */
2023-12-13 22:43:05 +00:00
footer {
position: fixed;
bottom: 0;
}
.big-text {
font-size: 40px;
}
h1 {
font-family: cursive;
}
h2 {
font-family: cursive;
}
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
.code {
font-family: monospace;
2023-12-14 17:26:01 +00:00
list-style-type: none;
2023-12-14 15:57:48 +00:00
}
td,
th {
border: 1px solid white;
padding: 10px;
2023-12-14 15:20:13 +00:00
}