TeleQom.org/css/sections/welcome.css

63 lines
1.2 KiB
CSS
Raw Normal View History

2023-03-15 19:53:04 +00:00
#welcome {
margin-top: var(--nav-height);
padding: 0;
2023-03-22 21:05:44 +00:00
background: url("/media/images/welcome-background-1080p.webp") center;
2023-03-15 19:53:04 +00:00
background-size: cover;
height: calc(100vh - var(--nav-height));
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
#welcome-logo {
height: 15rem;
width: 15rem;
}
#welcome h1 {
2023-03-22 21:05:44 +00:00
margin: 1rem 20% 1rem 1rem;
border: solid 0.25rem #5791FF;
border-radius: 50px;
padding: 0.5rem 1.25rem;
background-color: black;
2023-03-15 19:53:04 +00:00
}
#welcome h4 {
margin: 0 0 0 20%;
2023-03-22 21:05:44 +00:00
border: solid 0.25rem #5791FF;
border-radius: 50px;
padding: 0.5rem 1.25rem;
background-color: black;
2023-03-15 19:53:04 +00:00
}
#scroll-down {
position: absolute;
bottom: 2rem;
width: 3rem;
height: 2rem;
}
#scroll-down img {
width: 3rem;
}
@media only screen and (max-width: 1280px) {
2023-03-22 21:05:44 +00:00
#welcome {
background: url("/media/images/welcome-background-720p.webp") center;
background-size: cover;
2023-03-15 19:53:04 +00:00
}
#welcome h4 {
margin: 2rem;
}
#welcome h1 {
2023-03-22 21:05:44 +00:00
margin: 1rem;
2023-03-15 19:53:04 +00:00
}
}
@media only screen and (max-width: 500px) {
2023-03-22 21:05:44 +00:00
#welcome {
background: url("/media/images/welcome-background-mobile.webp") center;
background-size: cover;
2023-03-15 19:53:04 +00:00
}
}