mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-17 18:40:17 -04:00
64 lines
1.1 KiB
CSS
64 lines
1.1 KiB
CSS
@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,500';
|
|
@import 'https://fonts.googleapis.com/css?family=Josefin+Slab:700';
|
|
@import 'https://fonts.googleapis.com/css?family=Arapey:400,600';
|
|
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300&display=swap');
|
|
|
|
|
|
html {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
nav {
|
|
z-index: 10;
|
|
}
|
|
|
|
.animated-navbar {
|
|
transform: translateY(-70px);
|
|
animation: nav-slide 0.75s ease-in-out forwards;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
@keyframes nav-slide {
|
|
0% {
|
|
transform: translateY(-70px);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
|
|
|
|
.jumbotron {
|
|
position: relative;
|
|
transform: translateY(-70px);
|
|
top: 0;
|
|
left: 0;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-image: url('img/hero.png')
|
|
}
|
|
|
|
.hero-text {
|
|
margin-top: 25vh;
|
|
}
|
|
|
|
.home {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
background-color: rgb(255, 255, 255, 0.85);
|
|
}
|
|
|
|
body {
|
|
font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
|
|
margin: 0px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #444;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero-text {
|
|
margin-top: 30vh;
|
|
}
|
|
} |