home/static/css/style.css

120 lines
1.9 KiB
CSS
Raw Normal View History

2019-09-18 11:52:26 +02:00
html {
font-size: 13px;
2019-10-06 22:38:54 +02:00
scroll-behavior: smooth;
2019-09-18 11:52:26 +02:00
}
2019-07-11 18:00:37 +02:00
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin-bottom: 60px;
height: 100%;
2019-09-18 11:52:26 +02:00
font-size: 1rem;
2019-03-09 16:54:09 +01:00
}
2019-03-21 01:12:46 +01:00
2019-09-18 11:52:26 +02:00
h4 a,
2019-07-11 18:00:37 +02:00
p a {
2019-09-18 11:52:26 +02:00
text-decoration: underline;
color: orangered;
2019-07-11 18:00:37 +02:00
font-weight: 500;
2019-09-18 11:52:26 +02:00
transition: color .4s;
2019-03-21 01:12:46 +01:00
}
2019-09-18 11:52:26 +02:00
h4 a:hover,
2019-07-11 18:00:37 +02:00
p a:hover {
2019-09-18 11:52:26 +02:00
/* color: yellow; */
color: blue;
2019-03-09 16:54:09 +01:00
}
2019-03-14 01:45:02 +01:00
2019-09-18 11:52:26 +02:00
.display-1 {
2019-07-11 18:00:37 +02:00
font-weight: 800;
letter-spacing: 1px;
2019-09-18 11:52:26 +02:00
font-size: 15rem;
2019-07-11 18:00:37 +02:00
width: 100%;
text-align: right;
line-height: 0.6;
2019-09-18 11:52:26 +02:00
color: white;
2019-03-09 16:54:09 +01:00
}
2019-03-14 01:45:02 +01:00
2019-07-11 18:00:37 +02:00
.jumbotron {
2019-09-18 11:52:26 +02:00
background-color: #303030;
2019-07-11 18:00:37 +02:00
box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
2019-09-18 11:52:26 +02:00
padding-right: 10vw;
2019-07-11 18:00:37 +02:00
height: 100vh;
2019-09-18 11:52:26 +02:00
border-radius: 0px;
2019-03-09 16:54:09 +01:00
}
2019-03-14 02:14:53 +01:00
2019-07-11 18:00:37 +02:00
.org {
2019-09-18 11:52:26 +02:00
font-size: 9rem;
2019-07-11 18:00:37 +02:00
color: grey;
2019-03-14 02:14:53 +01:00
}
2019-07-11 18:00:37 +02:00
.lead {
2019-09-18 11:52:26 +02:00
color: #fff;
border-radius: 5px;
2019-07-11 18:00:37 +02:00
padding: 10px;
2019-09-18 11:52:26 +02:00
font-size: 1.3rem;
2019-07-11 18:00:37 +02:00
width: 100%;
text-align: right;
margin-top: 50px;
2019-03-09 16:54:09 +01:00
}
2019-07-11 18:00:37 +02:00
#chevron {
font-size: 10rem;
opacity: 0.5;
position: absolute;
bottom: 10px;
margin: 0 auto;
2019-09-18 11:52:26 +02:00
color: white;
}
/* // Extra small devices (portrait phones, less than 576px) */
/* // No media query since this is the default in Bootstrap */
@media (max-width: 576px) {
.display-1 { font-size: 10rem; }
.org { font-size: 8rem; }
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
html { font-size: 14px; }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
html { font-size: 18px; }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
html { font-size: 20px; }
}
/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
html { font-size: 22px; }
}
/*
@media (max-width: 1200px) {
html {
font-size: 22px;
}
}
@media (max-width: 900px) {
html {
font-size: 16px;
} */
/*
.display-1 {
font-size: 8rem;
}
.org {
font-size: 6rem;
}
#chevron {
font-size: 4rem;
} */
}