Skip to content
Permalink
Browse files
Updated some CSS issues
  • Loading branch information
ab6459 committed Nov 8, 2022
1 parent d6f42e5 commit eff777b2054c6ae36880905947ca31c8ac2f0acc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
@@ -1,5 +1,15 @@
# Week 1 - Lab Activities

| Activity | Hand-Out Date | HTML Labs | Knowledge Check |
|----------|---------------|-----------------------------------|-----------------|
| 1 | 00/00/0000 | [Access Here](html/1a_Example.md) | [Access Here]() |
| Activity | Hand-Out Date | HTML Labs |
|----------|---------------|-----------------------------------|
| 1 | 00/00/0000 | [Access Here](html/1a_Example.md) |

## Knowledge Check
Each week will consist of a mini-quiz which will be held on the Aula platform for the module. You are encouraged
to participate in these quizzes to reinforce the knowledge gained from the lecture and lab activity.

**These quizzes will not count towards the overall module grade.**

You can access the quiz by clicking on the following link:

[Week 1 - Knowledge Check](){ .box-link }
@@ -1,7 +1,6 @@
# Week 1 - Lecture Videos

## Video 1 - Introduction to the Module

## Introduction to the Module
![type:video](https://www.youtube.com/embed/a)

[HTML Slides](){ .btn .btn-outline-primary } [PDF Slides](){ .btn .btn-outline-primary }
[HTML Slides](){ .btn .btn-outline-primary }
[PDF Slides](){ .btn .btn-outline-primary }
@@ -59,15 +59,15 @@
<div class="ms-2 me-auto w-100">
<div class="fw-bold">{{ toc_item.title }}</div>
<ul class="list-group list-group-flush">
{% for toc_item in toc_item.children %}
{% for child_item in toc_item.children %}
<li class="list-group-item">
<input class="form-check-input me-1" type="checkbox" value="" id="firstCheckbox">
<label class="form-check-label" for="firstCheckbox">{{ toc_item.title }}</label>
<input class="form-check-input me-1" type="checkbox" value="" id="{{ child_item.title }}{{ child_item.index }}">
<label class="form-check-label" for="{{ child_item.title }}{{ child_item.index }}">{{ child_item.title }}</label>
</li>
{% endfor %}
</ul>
</div>
<span class="badge bg-primary rounded-pill {% if toc_item.title == 'Assessments' %}d-none{% elif toc_item.title == 'Home Page' %}d-none{% elif 'Lab' in toc_item.title %}d-none{% endif %}">{{ toc_item.children | length }}</span>
<span class="badge bg-primary rounded-pill {% if 'Lectures' not in toc_item.title %}d-none{% endif %}">{{ toc_item.children | length }}</span>
</li>
{% endfor %}
</ul>
@@ -80,8 +80,7 @@ a {
text-decoration: none;
}

p iframe {
border: .1rem solid rgba(0, 0, 0, 1);
div iframe {
height: 28vw !important;
width: 50vw !important;
}
@@ -93,7 +92,7 @@ a.box-link {
display: flex;
margin: 0.25em auto;
padding: 1em;
width: 75%;
width: 100%;
}

a.box-link:before {
@@ -164,7 +163,7 @@ blockquote {
padding: 1rem 1.2rem;
width: 75%; /* create space for the quotes */
color: #484748;
margin: 0.25em auto;
margin: 0.75em auto;
}


0 comments on commit eff777b

Please sign in to comment.