michalvankodev-site/static/global.css

83 lines
1.0 KiB
CSS
Raw Normal View History

2019-09-10 21:23:50 +02:00
html {
scroll-behavior: smooth;
}
2019-07-12 09:49:03 +02:00
body {
margin: 0;
2019-09-15 22:48:03 +02:00
font-family: Cantarell, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 16px;
2019-07-12 09:49:03 +02:00
line-height: 1.5;
2019-09-15 22:48:03 +02:00
color: #42436a;
2019-07-12 09:49:03 +02:00
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em 0;
2019-09-15 22:48:03 +02:00
font-weight: 200;
2019-07-12 09:49:03 +02:00
line-height: 1.2;
2019-09-15 22:48:03 +02:00
text-shadow: 1px 1px 1px #c6c4b7;
color: #212138;
letter-spacing: -0.01em;
2019-07-12 09:49:03 +02:00
}
h1 {
2019-09-15 22:48:03 +02:00
font-size: 2.5em;
}
h2 {
font-size: 1.7em;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.3em;
2019-07-12 09:49:03 +02:00
}
a {
2019-09-15 22:48:03 +02:00
color: #2e2ed9;
text-decoration: none;
transition: 0.2s;
2019-07-12 09:49:03 +02:00
}
2019-09-15 22:48:03 +02:00
a:visited {
color: #9a2ed9;
}
a:hover {
color: #2e86d9;
text-decoration: underline;
}
2019-07-12 09:49:03 +02:00
code {
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 2px;
}
2019-09-15 22:48:03 +02:00
p {
margin: 0;
}
::selection {
background: #0dd0d0;
}
@media only screen and (min-width: 400px) {
2019-07-12 09:49:03 +02:00
body {
2019-09-15 22:48:03 +02:00
font-size: 18px;
2019-07-12 09:49:03 +02:00
}
2019-09-15 22:48:03 +02:00
}
@media only screen and (min-width: 700px) {
body {
font-size: 24px;
}
}