Skip to content

Commit

Permalink
Update style.css added quicksand font to additional classes
Browse files Browse the repository at this point in the history
  • Loading branch information
lparfitt authored Sep 23, 2024
1 parent 95e02b9 commit 58f222f
Showing 1 changed file with 25 additions and 15 deletions.
40 changes: 25 additions & 15 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* Lesson Heading */
#rpf-lesson-title {
font-size: 24px !important;
font-family: 'Quicksand', sans-serif !important;
color: #CD2355 !important;
font-weight: 900 !important;
text-align: center !important;
Expand All @@ -11,6 +12,7 @@
/* General Paragraph Text */
.rpf-text {
font-size: 16px;
font-family: 'Quicksand', sans-serif !important;
color: #222222;
line-height: 1.6;
margin-bottom: 20px;
Expand All @@ -27,15 +29,17 @@
}

.notes h2 {
color: #0D7C71;
font-size: 24px;
font-weight: 700;
color: #0D7C71 !important;
font-family: 'Quicksand', sans-serif !important;
font-size: 24px !important;
font-weight: 700 !important;
box-sizing: border-box; /* Include box-sizing */
}

.notes p {
color: #222222;
font-size: 16px;
color: #222222 !important;
font-size: 16px !important;
font-family: 'Quicksand', sans-serif !important;
line-height: 1.6;
box-sizing: border-box; /* Include box-sizing */
}
Expand All @@ -50,15 +54,17 @@
}

.task h2 {
color: #6B3687;
font-size: 24px;
font-weight: 700;
color: #6C3687 !important;
font-family: 'Quicksand', sans-serif !important;
font-size: 24px !important;
font-weight: 700 !important;
box-sizing: border-box; /* Include box-sizing */
}

.task p {
color: #222222;
font-size: 16px;
color: #222222 !important;
font-size: 16px !important;
font-family: 'Quicksand', sans-serif !important;
line-height: 1.6;
box-sizing: border-box; /* Include box-sizing */
}
Expand All @@ -73,15 +79,17 @@
}

.teach h2 {
color: #CD2355;
font-size: 24px;
font-weight: 700;
color: #CD2355 !important;
font-family: 'Quicksand', sans-serif !important;
font-size: 24px !important;
font-weight: 700 !important;
box-sizing: border-box; /* Include box-sizing */
}

.teach p {
color: #222222;
font-size: 16px;
color: #222222 !important;
font-family: 'Quicksand', sans-serif !important;
font-size: 16px !important;
line-height: 1.6;
box-sizing: border-box; /* Include box-sizing */
}
Expand All @@ -91,6 +99,7 @@ details summary {
background-color: #232D9A;
color: white;
font-size: 20px;
font-family: 'Quicksand', sans-serif !important;
padding: 14px 40px;
border-radius: 8px;
width: 100%;
Expand All @@ -111,6 +120,7 @@ details summary:hover {
/* Collapsible Content */
details .content {
background-color: #E7F8F7;
font-family: 'Quicksand', sans-serif !important;
padding: 10px;
border-left: 5px solid #CD2355;
margin-top: 5px;
Expand Down

0 comments on commit 58f222f

Please sign in to comment.