erste Version der Beispielseite

This commit is contained in:
2023-11-18 16:50:17 +01:00
parent 0b9012efad
commit 310fcdf5fd
3 changed files with 121 additions and 0 deletions

41
samplesite.css Normal file
View File

@@ -0,0 +1,41 @@
body {
background-color: #000000;
margin-left: 6%;
margin-right: 6%;
width: 88%;
font-family: Calibri, Verdana, Geneva, Arial, sans-serif;
font-size: large;
color: #DCDCDC;
}
@media only screen and (min-width: 800px) {
body{
margin-left: 20%;
margin-right: 20%;
width: 60%;
}
}
h1 {
font-size: 150%;
font-weight: bold;
}
h2 {
font-size: 130%;
font-weight: bold;
}
h3 {
font-size: 100%;
font-weight: bold;
}
a {
color: #9696BE;
}
.code {
font-family: IBM Plex Mono, Liberation Mono, Courier, monospace;
color: #CCCCCC;
}