You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.1 KiB
71 lines
1.1 KiB
.dashboard-container { |
|
max-width: 1200px; |
|
margin: 0 auto; |
|
padding: 20px; |
|
} |
|
|
|
.welcome { |
|
text-align: center; |
|
margin-bottom: 30px; |
|
} |
|
|
|
.welcome-title { |
|
color: #457b9d; |
|
margin-bottom: 10px; |
|
} |
|
|
|
.tagline { |
|
font-size: 1.2em; |
|
color: #495057; |
|
} |
|
|
|
.section { |
|
margin-bottom: 40px; |
|
padding: 20px; |
|
border-radius: 8px; |
|
} |
|
|
|
.section-title { |
|
color: #457b9d; |
|
margin-bottom: 20px; |
|
text-align: center; |
|
} |
|
|
|
.cards { |
|
display: grid; |
|
grid-template-columns: repeat(2, 1fr); /* Two columns layout */ |
|
gap: 20px; /* Space between cards */ |
|
} |
|
|
|
.card { |
|
background-color: #ffffff; |
|
border-radius: 8px; |
|
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); |
|
padding: 15px; |
|
text-align: center; |
|
} |
|
|
|
.card-title { |
|
margin: 0 0 10px 0; |
|
color: #495057; |
|
} |
|
|
|
.card-content { |
|
font-size: 0.9em; |
|
color: #666; |
|
margin-bottom: 15px; |
|
} |
|
|
|
.card-button { |
|
padding: 10px 20px; |
|
border: none; |
|
border-radius: 5px; |
|
background-color: #a3c1ad; |
|
color: white; |
|
font-size: 1em; |
|
cursor: pointer; |
|
} |
|
|
|
.card-button:hover { |
|
background-color: #91a4b1; |
|
} |