kevinschoon-pomo/docs/css/main.css

84 lines
973 B
CSS
Raw Normal View History

2021-07-29 01:50:26 +02:00
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
:root {
--accent: #b1675d;
--light-gray: #eee;
--dark-gray: #c2c2c2;
--white: #f8f9fa;
--black: #2d2d2d;
--border-width: 5px;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
body {}
2018-01-22 16:07:58 +01:00
2021-07-29 01:50:26 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
label {
color: var(--black);
2018-01-22 16:07:58 +01:00
}
.intro {
2021-07-29 01:50:26 +02:00
text-align: center;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.tomato {
max-width: 20em;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.icons a {
text-decoration: none;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.icons svg {
margin-left: 10px;
margin-right: 10px;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.content {
margin: auto;
padding-top: 5em;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.readme {
font-size: 12px;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.content h1,h2,h3,h4,h5,h6 {
padding: .2em;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.center-splash {
text-align: center;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
.splash-image img {
border-radius: 2em;
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
@media screen and (max-height: 600px) {
.center-splash {
padding-top: 10%;
}
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
@media screen and (max-width: 900px) {
.splash-image img {
max-height: 250px;
}
2018-01-22 16:07:58 +01:00
}
2021-07-29 01:50:26 +02:00
@media screen and (min-width: 900px) {
.content {
max-width: 75% ;
}
2018-01-22 16:07:58 +01:00
}