More updates

More general updates for practice
This commit is contained in:
2024-01-25 01:52:22 -05:00
parent f999bc9c31
commit 9f52f6dfe1
6 changed files with 65 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

BIN
src/assets/intermission.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -1,6 +1,6 @@
import React from "react"; import React from "react";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import BannerImage from "../assets/MytwitchBanner.png"; import BannerImage from "../assets/BannerTemplate.jpg";
import "../styles/Home.css"; import "../styles/Home.css";
function Home() { function Home() {

View File

@@ -1,23 +1,23 @@
.footer { .footer {
width: 100svw; width: 100svw;
height: 160px; height: 130px;
background-color: #121619; background-color: #121619;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
padding-top: 10px; padding-top: 10px;
z-index: 1000;
} }
.socialMedia svg, .socialMedia a { .socialMedia svg, .socialMedia a {
color: white; color: rgb(255, 0, 0);
margin: 20px; margin: 20px;
font-size: 70px; font-size: 60px;
cursor: pointer; cursor: pointer;
text-decoration: none; text-decoration: none;
} }
.footer p { .footer p {
color: white; color: rgb(0, 255, 13);
} }

View File

@@ -14,8 +14,10 @@
.headerContainer { .headerContainer {
border-radius: 10px; border-radius: 10px;
height: auto; height: auto;
width: auto; width: 50svw;
margin-left: 30px; margin-left: 30px;
padding: 16px;
background-color: rgba(105, 105, 105, 0.16);
} }
.headerContainer h1 { .headerContainer h1 {
@@ -68,6 +70,7 @@
border: 1px solid black; border: 1px solid black;
padding: 5px; padding: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
border-radius: 10%;
z-index: 1001; z-index: 1001;
} }
@@ -130,8 +133,60 @@
} }
} }
@media only screen and (max-height: 500px) { @media only screen and (max-width: 1030px) {
.discordint iframe { .discordint iframe {
display: none; display: none;
} }
} }
@media only screen and (max-width: 920px),(max-height: 630px) {
.home {
justify-content: center;
align-items: center;
}
.headerContainer h1,
.headerContainer p {
display: flex;
}
.headerContainer {
margin-left: 0px;
border-radius: 10px;
padding: 10px;
width: auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #121619;
color: white;
}
.headerContainer h1 {
font-size: 40px;
height: 30px;
color: white;
}
.headerContainer p {
font-size: 30px;
color: white;
}
.headerContainer button {
background-color: rgb(255, 255, 255);
color: #000000;
margin-bottom: 30px;
}
.headerContainer button:hover {
background-color: #1500ff;
color: rgb(255, 255, 255);
}
.discordint iframe {
display: none;
}
}

View File

@@ -39,6 +39,7 @@
background-color: white; background-color: white;
padding: 10px; padding: 10px;
color: black; color: black;
transition: 0.3s ease-in;
} }
.navbar .rightSide button { .navbar .rightSide button {