mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-18 19:10:22 -04:00
made landing actually look decent
This commit is contained in:
parent
0576e8ca53
commit
6d3934e7c8
|
@ -1,3 +1,30 @@
|
|||
html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
nav {
|
||||
transform: translateY(-70px);
|
||||
z-index: 10;
|
||||
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: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
background-image: url('img/hero.png')
|
||||
}
|
|
@ -5,8 +5,8 @@
|
|||
{% endblock css %}
|
||||
{% block content %}
|
||||
<div class="jumbotron jumbotron-fluid">
|
||||
<div class="container">
|
||||
<h1 class="display-4">Class of 2023 Class Council</h1>
|
||||
<div class="container mt-5">
|
||||
<h1 class="display-4">2023 Class Council</h1>
|
||||
<p class="lead">We work for you.</p>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user