website work

This commit is contained in:
Zsolt Ero
2024-01-11 17:33:35 +01:00
parent 8d18554ec7
commit e37fc36ede
17 changed files with 345 additions and 215 deletions

BIN
website/assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

BIN
website/assets/logo_512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

95
website/assets/style.css Normal file
View File

@@ -0,0 +1,95 @@
/*
Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input,
button,
textarea,
select {
font: inherit;
}
/* --- start --- */
body {
padding: 0 40px;
line-height: 1.5;
font-size: 17px;
-webkit-font-smoothing: antialiased;
font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
font-weight: normal;
color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #555;
max-width: 600px;
margin: 1em auto 0.5em;
line-height: 1.2;
font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro,
sans-serif;
font-weight: 700;
}
a {
color: #444;
}
.logo {
margin: 0 auto;
}
h1 {
text-align: center;
margin: 0 auto;
}
p {
max-width: 600px;
margin: 0 auto 0.6em;
}
pre {
background: #efefef;
max-width: 800px;
margin: 0 auto 0.6em;
font-size: 14px;
}
code {
font-family: 'Nimbus Mono PS', 'Courier New', monospace;
font-weight: 400;
background: #efefef;
}
#map {
width: 100%;
height: 500px;
margin-bottom: 2em;
}