Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Premocidade/src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
:root {
--primary-color: #4a90e2;
--secondary-color: #f5a623;
--red-color: #dc3545;
--background-color: #ffffff;
--text-color: #333333;
--gradient-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
Expand Down Expand Up @@ -1168,7 +1169,7 @@ h1 {
}

.aula-numero {
background: var(--primary-color);
background: var(--red-color);
color: white;
padding: 5px 10px;
border-radius: 50%;
Expand All @@ -1181,6 +1182,11 @@ h1 {
font-weight: bold;
}

.aula-card h3 {
color: var(--red-color);
font-weight: bold;
}

.aula-card ul {
list-style: none;
padding: 0;
Expand All @@ -1190,7 +1196,7 @@ h1 {
.aula-card li {
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
color: #f0f0f0;
color: var(--red-color);
}

.aula-card li:last-child {
Expand Down