portal/assets/css/custom.css

176 lines
2.3 KiB
CSS
Executable File

---
layout: none
---
@keyframes blink
{
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
* {
outline: none;
color: #188600;
}
body {
font-size: 12px;
display: flex;
flex-flow: column;
height: 100%;
background-color: black;
}
img {
max-width: 100% !important;
filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.4));
height: 100%;
}
/* header */
header {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
text-align: center;
word-wrap: break-word;
}
header * {
color: #ff7e00 !important;
font-size: 2rem !important;
}
/* nav */
nav {
line-height: 2rem;
padding: 50px;
}
nav a {
color: #705000 !important;
padding-right: 12px;
font-size: 1rem;
font-weight: bold;
}
nav a:hover {
color: #FFBE00 !important;
}
.nav-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.nav-grid-item{
padding-top: 30px;
padding-right: 30px;
padding-left: 30px;
flex-grow: 1;
}
.nav-icon {
width: 40px;
height: 40px;
margin: auto;
}
.nav-icon-text {
margin-top: 10px;
text-align: center;
}
a.a-active {
color: #FFBE00 !important;
}
/* main */
main.post-list {
display: grid;
grid-gap: 0.4rem;
line-height: 1.5rem;
padding-left: 20px;
padding-right: 20px;
}
main.about{
line-height: 1.5rem;
padding-left: 20px;
padding-right: 20px;
}
main.content {
padding-left: 20px;
padding-right: 20px;
}
main a:hover {
background-color: #632a0299;
width: max-content;
}
.title {
color: #ff7e00;
font-size: 25px;
font-weight: bold;
display: grid;
text-align: left;
}
.content a {
text-decoration: underline;
}
.welcome{
padding-top: 90px;
font-size: large;
text-align: center;
}
.headline{
padding-top: 20px;
padding-bottom: 10px;
font-size: large;
}
/* footer */
footer {
font-weight: bold;
color: #ffd300;
font-size: xx-small;
padding: 20px;
}
@media screen and (max-width: 780px) {
.screen {
position: unset !important;
width: 100% !important;
}
.screen-image { display: none; }
.screen-content {
position: unset !important;
top: 0px !important;
left: 0px !important;
width: auto !important;
height: 100% !important;
}
.headline, .meta, .content, nav, nav a {
font-size: 0.5rem;
}
h1, h2, h3, h4, h5, h6 {
font-size: 0.8rem !important;
}
.crt-flicker, .crt-scanlines {
display: none !important;
}
}