EvalueTonSavoir/client/src/pages/Home/home.css
2025-02-21 14:48:21 -05:00

91 lines
No EOL
1.5 KiB
CSS

.page {
display: flex;
justify-content: center;
align-items: center;
}
.btn-container {
display: flex;
}
.teacher-btn {
margin: 10px;
padding: 1rem;
max-width: 100%;
box-sizing: border-box;
display: grid;
grid-template-rows: auto auto;
background-color: var(--main-color);
text-decoration: none;
}
.teacher-btn img {
width: 70%;
height: 70%;
object-fit: contain;
margin-left: -2vw;
}
.student-btn {
margin: 10px;
padding: 1rem;
max-width: 100%;
box-sizing: border-box;
display: grid;
grid-template-rows: auto auto;
background-color: var(--main-color);
text-decoration: none;
}
.student-btn img {
width: 70%;
height: 70%;
object-fit: contain;
margin-right: -2vw;
}
.big-title {
font-size: 3.5vw;
font-weight: 600;
line-height: 1.25;
color: white;
}
.right-component {
display: flex;
justify-content: flex-end;
text-align: end;
align-items: end;
}
.auth-selection-btn {
position: absolute;
top: 20px;
right: 20px;
}
.auth-btn {
padding: 10px 20px;
background-color: #5271ff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}
.auth-btn:hover {
background-color: #5976fa;
}
@media only screen and (max-width: 768px) {
.btn-container {
flex-direction: column;
}
.big-title {
font-size: 8vw;
}
}