Files
kedaimaster/src/pages/WelcomePage.css
zadit f1591b1a2a ok
2025-01-26 23:45:42 +07:00

62 lines
1.1 KiB
CSS

/* WelcomePage.css */
.welcome-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
text-align: center;
}
.image-container {
width: 150px; /* Adjust as needed */
height: 150px; /* Adjust as needed */
overflow: hidden;
border-radius: 50%;
margin-bottom: 20px;
}
.fileInput {
display: none;
}
.circular-image {
width: 100%;
height: 100%;
object-fit: contain;
}
.welcoming-text {
font-size: 24px;
margin-bottom: 20px;
font-family: "Plus Jakarta Sans", sans-serif;
}
.get-started-button {
padding: 10px 20px;
border: none;
border-radius: 25px;
background-color: #007bff; /* Bootstrap primary color */
color: white;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
font-family: "Plus Jakarta Sans", sans-serif;
}
.get-started-button:hover {
background-color: #0056b3; /* Darker shade on hover */
}
/* Fullscreen styles */
.fullscreen {
position: fixed;
top: 50%;
left: 50%;
width: 100vw;
height: 100vh;
transform: translate(-50%, -50%);
z-index: 300;
}