-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overview: Link to learning objectives as well as prep (#875)
* Rewrap to one line * Qualify local context with $prep * Remove with block * Add learning objective link * little tweak to make this clearer to me * add in a bunch of comments I just keep forgetting this isn't looping over sprints so I presume others will too * time for an actual mini layout * Update org-cyf-itp/content/overview/_index.md Co-authored-by: Daniel Wagner-Hall <[email protected]> --------- Co-authored-by: Sally McGrath <[email protected]>
- Loading branch information
1 parent
3290ce2
commit 4130665
Showing
6 changed files
with
104 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ul[class], | ||
ol[class], | ||
li[class] { | ||
padding: 0; | ||
margin: 0; | ||
list-style: none; | ||
} | ||
|
||
ul.e-list, | ||
ol.e-list { | ||
margin: revert; | ||
line-height: 1.5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.c-overview { | ||
display: grid; | ||
// smallest gaps here so this view is very skimmable | ||
--gap: var(--theme-spacing--1); | ||
gap: var(--gap); | ||
padding: var(--gap) var(--gap) var(--gap) 0; | ||
max-width: var(--theme-spacing--linelength); | ||
|
||
&__module { | ||
font-weight: 600; | ||
color: var(--theme-color--ink); | ||
background-color: var(--theme-color--block); | ||
} | ||
&__subheading, | ||
&__nav { | ||
display: flex; | ||
gap: var(--gap); | ||
justify-content: space-between; | ||
} | ||
&__subheading { | ||
@media (max-width: $c-min) { | ||
flex-flow: row wrap; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters