memorium/static/global.css

35 lines
545 B
CSS
Raw Normal View History

2023-07-26 13:47:01 +02:00
body {
2023-07-31 17:21:17 +02:00
background: #141217;
padding: 0px 20px;
}
2023-07-30 19:40:39 +02:00
pre {
font-family:Work Sans;
}
2023-08-02 16:05:05 +02:00
a {
color: cadetblue
}
2023-08-02 17:35:10 +02:00
.custom-grid {
grid-template-columns: repeat(auto-fit, minmax(37vw, 1fr)) ;
}
@media(min-width: 640px){
2023-08-02 18:13:31 +02:00
.custom-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) ;
}
2023-08-02 17:35:10 +02:00
}
.noisy-gradient::after {
content: "";
top: 0;
left: 0;
z-index:0;
position: absolute;
height: 100%;
width: 100%;
2023-08-02 13:11:17 +02:00
filter: saturate(0) brightness(2);
background: url(/grainy-gradient.png);
background-size: contain;
2023-07-26 13:47:01 +02:00
}