Files
GitCheatSheet/style.css
2026-02-24 12:49:53 +03:00

69 lines
1.0 KiB
CSS

@font-face {
font-family: "Erbaum Book";
src: url("static/Erbaum-Book.ttf");
}
.themed {
color: #71ff55;
}
* {
font-family: "Erbaum Book", "Courier New", Courier, monospace;
color: white;
}
body {
background-color: black;
}
.header {
justify-content: center;
text-align: center;
}
ol li {
list-style-position: inside;
}
#table {
line-height: 200%;
}
a:hover {
color: #71ff55;
}
a {
text-decoration: underline;
color: white;
transition: color 300ms;
}
table {
border: 1px white solid;
border-collapse: collapse;
}
td {
border: 1px white solid;
padding: 0.5rem;
}
tr:nth-child(even) {
background-color: rgba(100, 100, 100, 0.25);
}
footer {
background: #9e9e9e;
background: linear-gradient(
0deg,
rgba(100, 100, 100, 1) 0%,
rgba(100, 100, 100, 0) 100%
);
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100svw;
ul {
list-style: none;
padding-left: 0;
}
}
.exam {
margin: 10px;
}