This commit is contained in:
andrei-mihnea-cerbu
2024-04-08 13:37:58 +03:00
parent 333ad8be09
commit 370bbdedcd
164 changed files with 3915 additions and 161 deletions
@@ -0,0 +1,71 @@
body, html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Prevents scrolling caused by the absolute positioning */
}
body {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
position: relative;
z-index: 0; /* Ensures the background is under the content */
}
.background {
position: absolute;
top: -5%;
left: -5%;
width: 110%;
height: 110%;
background-image: url(background_image.jpg);
background-size: cover;
background-repeat: no-repeat;
filter: brightness(50%) blur(5px);
z-index: -1; /* Keeps it below the content */
}
.container {
z-index: 1;
}
/* New styles for title and subtitle */
.landingTitle {
color: #ffffff;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
font-size: 3.5rem;
font-weight: bold;
background: rgba(255, 255, 255, 0.2);
padding: 0.5rem;
border-radius: 0.5rem;
display: inline-block; /* Wrap the background to the text */
margin-top: 2rem; /* Give some space from the top */
}
.landingSubtitle {
color: #dcdcdc;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
font-size: 2rem;
padding: 0.25rem;
border-radius: 0.5rem;
display: block; /* Wrap the background to the text */
margin-bottom: 2rem; /* Give some space before the buttons */
}
.centered-menu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.button-container {
display: flex;
flex-direction: row; /* This will align the buttons side by side */
justify-content: center; /* Center the buttons within the container */
}
@@ -0,0 +1,82 @@
.form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 20%;
height: auto;
color: white;
background: #095d7e;
border-radius: 10px;
padding: 2rem;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
.header hr {
width: 15vw;
}
.header {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
font-size: 1.5rem;
text-align: center;
margin: 0 0 1rem 0;
}
.content {
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-content: center;
}
.footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
align-items: center;
margin: 1rem 0 0 0;
}
input {
text-align: center;
color: white;
font-weight: bold;
font-size: 1.2rem;
width: 70%;
padding: 1rem;
margin: 0.7rem;
border-radius: 10px;
}
button {
font-weight: bold;
padding: 0.5rem 3rem 0.5rem 3rem;
font-size: 1rem;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[name="submit"] {
background-color: #F44336;
color: white;
}