Files
openfreemap/website/style.css
2024-01-11 16:49:46 +01:00

81 lines
1.1 KiB
CSS

/*
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;
font-size: 14px;
}
code {
font-family: 'Nimbus Mono PS', 'Courier New', monospace;
font-weight: 600;
background: #efefef;
}
#map {
height: 500px;
width: 100%;
}