This commit is contained in:
Andras Schmelczer 2026-06-06 19:37:55 +01:00
parent 52eb07a993
commit 0fde080ab8
8 changed files with 555 additions and 376 deletions

View file

@ -1,45 +1,47 @@
.card {
background-color: #fff;
padding: 2em;
text-align: left;
margin: 2em 0em 2em 0em;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5), 0 6px 20px 0 rgba(0,0,0,0.09);
height: auto;
width: auto;
overflow: auto;
.card {
background-color: #fff;
padding: 2em;
text-align: left;
margin: 2em 0em 2em 0em;
box-shadow:
0 8px 16px 0 rgba(0, 0, 0, 0.5),
0 6px 20px 0 rgba(0, 0, 0, 0.09);
height: auto;
width: auto;
overflow: auto;
}
h2 {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 2em;
margin: auto;
text-align: center;
color: #0A0F14;
h2 {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 2em;
margin: auto;
text-align: center;
color: #0a0f14;
}
pre {
text-align: justify;
font-family: "Open sans", sans-serif;
font-weight: 300;
font-size: 1.5em;
white-space: normal;
width: 100%;
pre {
text-align: justify;
font-family: "Open sans", sans-serif;
font-weight: 300;
font-size: 1.5em;
white-space: normal;
width: 100%;
}
img {
display: block;
max-height: 100%;
float: right;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin: 1px;
max-width: 500px;
display: block;
max-height: 100%;
float: right;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin: 1px;
max-width: 500px;
}
@media only screen and (max-width: 1000px){
h2 {
@media only screen and (max-width: 1000px) {
h2 {
font-size: 1.6em;
}
pre {
}
pre {
font-size: 1em;
}
}
}
}