kc-website/index.css

114 lines
1.7 KiB
CSS
Raw Normal View History

2022-12-12 15:35:14 +01:00
* {
font-family: Montserrat, Ubuntu, Lucida Grande, Helvetica Neue, DejaVu Sans, FreeSans, Liberation Sans, Droid Sans, sans;
}
header {
align-items: center;
display: flex;
height: 10 vh;
background-color: deeppink;
margin-bottom: 1vh;
}
h1 {
font-size: 150%;
}
h2 {
font-size: 120%;
}
p {
font-size: 75%;
}
footer{
color: darkgray;
font-size: 3vw;
}
.banner {
background-image: url("static/tresorImAll.webp");
width: 100%;
height: 90vh;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.withinBanner {
display:inline-block;
}
.linkContainer {
display: grid;
grid-template-columns: auto auto auto;
width: 100%;
}
.pLink {
font-size: 4vh;
color: white;
}
.bannerHeader {
font-size: 9vh;
color: black;
}
.bannerSubtext {
font-size: 6vh;
color: black;
}
.glow {
color: #fff;
text-align: center;
animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}
.infoContainer {
margin-left: 10vw;
margin-right: 10vw;
display: grid;
grid-template-columns: auto auto;
}
.infoImgDiv {
width: 30vw;
display: flex;
justify-content: center;
align-items: center;
}
.infoDiv {
display: grid;
width: 50vw;
text-align: justify;
justify-content: center
}
.info {
font-size: 2vw;
}
.infoHeader {
font-size: 3vw;
margin-top: 5vw;
margin-bottom: 0vw;
color: deeppink;
}