Skip to content

Commit

Permalink
Update styles.css added margin-right to lists
Browse files Browse the repository at this point in the history
  • Loading branch information
lparfitt authored Nov 19, 2024
1 parent 1460c3f commit 43930be
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -285,16 +285,17 @@ a:hover, a:active {

/* Specific adjustments for lists to ensure alignment with other text */
ul, ol {
color: #222222 !important; /* Match body text color */
font-size: 16px; /* Same font size as body text */
font-family: 'Quicksand', sans-serif !important; /* Apply the same font */
line-height: 1.6 !important; /* Match line-height for readability */
margin-left: 40px !important; /* Indent the list items */
margin-bottom: 20px !important; /* Add spacing after the list */
list-style: disc; /* Add default bullet points */
color: #222222 !important; /* Match body text color */
font-size: 16px; /* Same font size as body text */
font-family: 'Quicksand', sans-serif !important; /* Apply the same font */
line-height: 1.6 !important; /* Match line-height for readability */
margin-left: 40px !important; /* Indent the list items */
margin-right: 40px !important;
margin-bottom: 20px !important; /* Add spacing after the list */
list-style: disc; /* Add default bullet points */
}

/* General list item styling */
ul li, ol li {
margin-bottom: 10px; /* Add spacing between list items */
margin-bottom: 10px; /* Add spacing between list items */
}

0 comments on commit 43930be

Please sign in to comment.