Skip to content

Commit

Permalink
Update style.css removed assessments and forums
Browse files Browse the repository at this point in the history
  • Loading branch information
lparfitt authored Sep 23, 2024
1 parent 5f39933 commit 2ec9151
Showing 1 changed file with 0 additions and 184 deletions.
184 changes: 0 additions & 184 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,187 +196,3 @@ a:hover, a:active {
padding: 10px;
text-align: left;
}

/* Assessment Question Blocks */
.assessment-block {
background-color: #FCF3F6; /* Light pink background */
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
border-left: 5px solid #CD2355; /* Accent border */
}

.assessment-block h3 {
font-size: 22px;
font-family: 'Quicksand', sans-serif;
color: #CD2355; /* Title color */
font-weight: 700;
margin-bottom: 10px;
}

.assessment-block .problem-progress {
font-size: 14px;
color: #222222;
margin-bottom: 10px;
}

.assessment-block .field {
margin-bottom: 10px;
}

.assessment-block .field label {
font-size: 16px;
color: #222222; /* Label text color */
font-family: 'Quicksand', sans-serif;
}

/* Assessment Action Buttons */
.assessment-block .problem-action-btn {
background-color: #232D9A; /* Button background */
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
margin-right: 5px;
}

.assessment-block .problem-action-btn:hover {
background-color: #232e9b;
}

.assessment-block .submit-btn {
background-color: #CD2355; /* Submit button background */
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}

.assessment-block .submit-btn:hover {
background-color: #C51D4A;
}

/* Assessment Status (unanswered, etc.) */
.assessment-block .status {
font-size: 14px;
color: #232D9A;
}

/* Discussion Module */
.discussion-module {
background-color: #F4EEF7; /* Light purple background */
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
border-left: 5px solid #6B3687; /* Accent border */
}

.discussion-module-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.discussion-module-title {
font-size: 22px;
font-family: 'Quicksand', sans-serif;
color: #6B3687; /* Title color */
font-weight: 700;
}

.inline-discussion-topic {
font-size: 16px;
color: #222222;
margin-bottom: 10px;
}

.discussion-show {
background-color: #232D9A; /* Button background */
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
}

.discussion-show:hover {
background-color: #232e9b;
}

/* Discussion Post Container */
.discussion-post {
background-color: #E7F8F7; /* Light green background for posts */
padding: 15px;
border-radius: 8px;
margin-bottom: 10px;
border-left: 5px solid #0D7C71; /* Accent border */
}

.discussion-post h4 {
font-size: 18px;
color: #0D7C71; /* Post title color */
font-family: 'Quicksand', sans-serif;
font-weight: 700;
margin-bottom: 8px;
}

.discussion-post p {
font-size: 16px;
color: #222222; /* Post text color */
line-height: 1.6;
}

/* Discussion Buttons */
.discussion-post .btn {
background-color: #232D9A;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
margin-right: 5px;
}

.discussion-post .btn:hover {
background-color: #232e9b;
}

/* Input Fields in Discussion Posts */
.discussion-post input,
.discussion-post textarea {
width: 100%;
padding: 10px;
border: 1px solid #222222;
border-radius: 5px;
margin-bottom: 10px;
font-family: 'Quicksand', sans-serif;
}

/* Forum Navigation */
.forum-nav-bar {
background-color: #FCF3F6; /* Light pink background */
padding: 15px;
border-radius: 8px;
border-left: 5px solid #CD2355;
margin-bottom: 10px;
}

.forum-nav-bar button {
background-color: #232D9A;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
}

.forum-nav-bar button:hover {
background-color: #232e9b;
}

0 comments on commit 2ec9151

Please sign in to comment.