67 lines
1.0 KiB
CSS
67 lines
1.0 KiB
CSS
.dashboard-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.dashboard-content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
color: white;
|
|
}
|
|
|
|
.dashboard-header {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.header-title {
|
|
color: #0e355b;
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.welcome-text {
|
|
color: #4b5563;
|
|
}
|
|
|
|
.dashboard-main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.dashboard-main-content {
|
|
width: 100%;
|
|
max-width: 768px;
|
|
text-align: center;
|
|
}
|
|
|
|
.dashboard-image {
|
|
width: 100%;
|
|
border-radius: 0.375rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
background-color: #0e355b;
|
|
color: #d1d5db;
|
|
border-radius: 0.375rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #154676;
|
|
}
|