nicco.io/static/global.css

49 lines
902 B
CSS
Raw Normal View History

2020-07-24 11:10:01 +02:00
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&family=Playfair+Display&display=swap');
2020-07-23 20:30:57 +02:00
body {
2020-07-24 11:10:01 +02:00
margin: 0;
box-sizing: border-box;
2020-07-24 15:16:04 +02:00
overflow: hidden;
background-color: #ffffff;
2020-07-23 20:30:57 +02:00
2020-07-24 11:10:01 +02:00
font-family: 'Jost', Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans,
Droid Sans, Helvetica Neue, sans-serif;
font-size: 1em;
font-weight: lighter;
color: #000;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
2020-07-23 20:30:57 +02:00
}
2020-07-24 11:10:01 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Playfair Display', serif;
font-weight: normal;
2020-07-27 12:36:55 +02:00
margin: 1em 0 0.5em 0;
2020-07-23 20:30:57 +02:00
}
2020-07-24 11:10:01 +02:00
p {
text-align: justify;
line-height: 1.5;
2020-07-23 20:30:57 +02:00
}
2020-07-27 12:36:55 +02:00
hr {
border: 0.1px solid var(--clr-primary);
}
2020-07-24 11:10:01 +02:00
:root {
--clr-primary: hsl(219, 90%, 80%);
2020-07-23 20:30:57 +02:00
}
2020-07-24 11:10:01 +02:00
a {
color: inherit;
2020-07-24 15:30:46 +02:00
text-decoration: none;
2020-07-24 11:10:01 +02:00
}