2023-05-14 22:07:16 +03:00
|
|
|
body {
|
|
|
|
|
margin: 0;
|
2023-08-08 19:50:19 +03:00
|
|
|
font-family: Arial, sans-serif;
|
2023-05-14 22:07:16 +03:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-08 19:50:19 +03:00
|
|
|
h1, h2, h3, h4 {
|
|
|
|
|
font-family: 'Rubik', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-14 22:07:16 +03:00
|
|
|
code {
|
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
|
monospace;
|
|
|
|
|
}
|
2023-06-22 19:20:21 +03:00
|
|
|
|
2023-12-25 12:09:58 +02:00
|
|
|
ul {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
padding-inline-start: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
thead {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-08 19:50:19 +03:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Rubik';
|
|
|
|
|
src: url('../assets/Rubik-Medium.ttf') format('truetype');
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-display: swap;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-22 19:20:21 +03:00
|
|
|
.primary {
|
|
|
|
|
background-color: #ffcc66;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
cursor: pointer;
|
2023-08-08 19:50:19 +03:00
|
|
|
font-family: 'Rubik', sans-serif;
|
2023-06-22 19:20:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.primary:hover {
|
|
|
|
|
background-color: #ffb92d;
|
2024-01-01 20:25:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table td {
|
|
|
|
|
padding: 3px 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table tr:nth-child(odd) {
|
|
|
|
|
background: #d6d6d6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table tr:hover {
|
|
|
|
|
background: #c0c0c0;
|
2024-01-05 16:17:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visible {
|
|
|
|
|
display: block;
|
2023-06-22 19:20:21 +03:00
|
|
|
}
|