mirror of
https://github.com/UofCBaja/BajaUofCWebsite.git
synced 2025-07-27 05:25:58 -06:00
.github
.vscode
Website Layout
public
src
AboutUs
Club Membership & Upcoming Events
Footer
Gallery
Header
Home
Home.css
Home.jsx
MockDB
OurSponsors
Teams
TestingTools
index.css
index.js
reportWebVitals.js
setupTests.js
.gitignore
Branch Diagram.drawio
Ideal Branch Layout.jpg
README.md
package-lock.json
package.json
46 lines
603 B
CSS
46 lines
603 B
CSS
#HomeTop {
|
|
display: flex;
|
|
position: relative;
|
|
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
#HomeTop img {
|
|
height: 76svh;
|
|
width: 100%;
|
|
background-image: url(https://picsum.photos/200);
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
#HomeTop div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
z-index: 1;
|
|
|
|
margin-right: 25svw;
|
|
margin-bottom: 25svh;
|
|
}
|
|
|
|
#HomeTop div h1 {
|
|
margin: 0px;
|
|
}
|
|
|
|
/* #HomeTop div h2 {
|
|
} */
|
|
|
|
#HomePageLayout div {
|
|
display: flex;
|
|
}
|
|
|
|
#HomePageLayout div div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|