Files
2025-09-17 23:19:24 +00:00

65 lines
1.1 KiB
CSS

/* Themeing */
:root {
--primary-color: #4C5454;
--secondary-color: #82AEB1;
--accent-color: #AEF78E;
--tirtiary-color: #2E0014;
--additional-color: #B80C09;
}
nav {
border-radius: 8px;
width: calc(100% - 20px);
height: 35px;
background-color: var(--primary-color);
padding-left: 10px;
margin-right: 10px;
}
nav > a {
padding: 5px;
background-color: var(--primary-color);
color: white;
display: inline-block;
height: 25px;
line-height: 25px;
margin-bottom: 0px;
text-decoration: none;
}
nav > a:hover {
cursor: pointer;
background-color: var(--secondary-color);
color: var(--primary-color);
}
#navbar_frame {
width: 100%;
border: none;
height: 55px;
overflow: hidden;
}
body {
background-color: var(--secondary-color);
}
#notable_ac_table {
padding-left: 45px;
padding-right: 45px;
width: 100%;
}
.notable_ac_table_img {
width: 100%;
}
.notable_ac_table_caption {
font-weight: bolder;
font-size: 30px;
}
.notable_ac_table_caption > a {
text-decoration: none;
color: black;
}