FEWD-CTEC3905/css/styles.css

252 lines
4.3 KiB
CSS
Raw Normal View History

2024-02-04 16:29:54 +00:00
/* MOBILE AND GLOBAL STYLES */
/* applies to screens smaller than 500px (first breakpoint) */
/* and above unless overwritten below */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap');
:root {
}
2024-02-24 00:07:38 +00:00
2024-02-04 16:29:54 +00:00
body {
font-family: 'Outfit', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
2024-02-24 00:07:38 +00:00
/* LANDING STYLES */
@keyframes fadeImage {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
2024-02-04 16:29:54 +00:00
2024-02-23 23:56:16 +00:00
#landing {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-size: cover;
transition: opacity 1s forwards; /*transition does not work for images*/
position: relative;
}
2024-02-04 16:29:54 +00:00
2024-02-23 23:56:16 +00:00
#landing #background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
}
2024-02-23 23:56:16 +00:00
#landing #background-transition {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0;
transition: opacity 1s;
}
h1 {
font-size: 10vw;
text-align: center;
user-select: none;
}
#titleBanner {
padding-left: 5%;
padding-right: 5%;
transition: color 1s, background-color 1s;
}
.black {
background-color: #000;
color: #fff;
mix-blend-mode: multiply;
}
.white {
background-color: #fff;
color: #000;
mix-blend-mode: lighten;
}
#colorSelector {
display: flex;
2024-02-23 23:56:16 +00:00
position: absolute;
top: 0;
right: 0;
margin: 10px;
align-items: center;
padding: 10px;
background-color: #ffffff50;
border-radius: 10px;
}
#colorSelector input {
margin-left: 10px;
}
#colorSelector label {
font-size: 1.5em;
}
2024-02-04 16:29:54 +00:00
2024-02-24 00:07:38 +00:00
/* CAROUSEL STYLES */
2024-02-23 23:56:16 +00:00
#carousel {
2024-02-24 00:07:38 +00:00
height: 100vh;
2024-02-23 23:56:16 +00:00
background-color: #0d0d0d;
position: relative;
display: flex;
}
#carousel-container {
display: flex;
2024-02-24 00:07:38 +00:00
flex-direction: column;
2024-02-23 23:56:16 +00:00
width: 100%;
padding: 50px;
}
.carousel-item {
position: relative;
display:block;
2024-02-24 15:08:09 +00:00
height: 100px;
2024-02-24 00:07:38 +00:00
width: 96%;
2024-02-24 15:08:09 +00:00
min-height: 100px;
2024-02-24 00:07:38 +00:00
margin: 12px;
2024-02-24 15:08:09 +00:00
border-radius: 55px;
2024-02-23 23:56:16 +00:00
border: 5px solid black;
overflow: hidden;
2024-02-24 00:07:38 +00:00
transition: width 1s ease, height 1s ease;
2024-02-23 23:56:16 +00:00
}
.carousel-item .carousel-id {
position: absolute;
bottom: 0;
left: 0;
2024-02-24 00:12:26 +00:00
transform: translate(10px, 5px);
2024-02-24 15:08:09 +00:00
width: 70px;
height: 70px;
2024-02-23 23:56:16 +00:00
background-color: #202020;
2024-02-24 15:08:09 +00:00
border-radius: 40px;
2024-02-23 23:56:16 +00:00
text-align: center;
2024-02-24 15:08:09 +00:00
line-height: 70px;
font-size: 50px;
2024-02-23 23:56:16 +00:00
margin: 0;
margin-bottom: 15px;
color: white;
border: 5px solid black;
text-shadow: black 5px 5px 5px;
user-select: none;
2024-02-23 23:56:16 +00:00
}
.carousel-item .carousel-title {
position: absolute;
bottom: 0;
left: 0;
2024-02-24 15:08:09 +00:00
transform: translate(100px, -35px);
2024-02-23 23:56:16 +00:00
color: white;
2024-02-24 15:08:09 +00:00
font-size: 25px;
2024-02-23 23:56:16 +00:00
margin: 0;
text-shadow: black 3px 3px 3px;
width: 500px;
2024-02-23 23:56:16 +00:00
}
#carousel-container .active {
2024-02-24 00:07:38 +00:00
height:100%;
2024-02-23 23:56:16 +00:00
}
#carousel-container #carousel-1 {
background-image: url("/assets/photos/space-4678686_1920.jpg");
background-size: cover;
background-position: center;
}
#carousel-container #carousel-2 {
background-image: url("/assets/photos/universe-1622107_1920.jpg");
background-size: cover;
background-position: center;
}
#carousel-container #carousel-3 {
background-image: url("/assets/photos/science-fiction-2907434_1920.jpg");
background-size: cover;
background-position: center;
}
#carousel-container #carousel-4 {
background-image: url("/assets/photos/fantasy-2770468_1920.jpg");
background-size: cover;
background-position: center;
}
2024-02-04 16:29:54 +00:00
/* TABLET STYLES */
@media screen and (min-width: 500px) {
/* applies to screens wider than 499px */
2024-02-04 16:29:54 +00:00
}
/* DESKTOP STYLES */
@media screen and (min-width: 1000px) {
/* applies to screens wider than 999px */
2024-02-24 00:07:38 +00:00
#carousel {
height: 910px;
}
#carousel-container {
display: flex;
flex-direction: row;
}
.carousel-item {
min-width: 200px;
height: 800px;
width: 150px;
min-width: 150px;
2024-02-24 15:08:09 +00:00
border-radius: 80px;
}
.carousel-item .carousel-id {
width: 120px;
height: 120px;
line-height: 120px;
font-size: 100px;
border-radius: 65px;
2024-02-24 00:07:38 +00:00
}
#carousel-container .active {
width:100%;
height: 800px;
2024-02-24 00:07:38 +00:00
}
2024-02-04 16:29:54 +00:00
2024-02-24 15:08:09 +00:00
.carousel-item .carousel-title {
transform: translate(180px, -50px);
font-size: 50px;
}
2024-02-04 16:29:54 +00:00
}