-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
turning readme guidelines into slide deck for teaching. most of the w…
…ay through
- Loading branch information
1 parent
bca7363
commit 8c2f6b0
Showing
29 changed files
with
2,348 additions
and
22 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
506 changes: 506 additions & 0 deletions
506
course-materials/materials/readme-guidelines-slides.qmd
Large diffs are not rendered by default.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,051 changes: 1,051 additions & 0 deletions
1,051
docs/course-materials/materials/readme-guidelines-slides.html
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,144 @@ | ||
.countdown { | ||
background: inherit; | ||
position: absolute; | ||
cursor: pointer; | ||
font-size: 2em; | ||
line-height: 1; | ||
border-color: #FFFFFF; | ||
border-width: 3px; | ||
border-style: solid; | ||
border-radius: 15px; | ||
box-shadow: 0px 4px 10px 0px rgba(50, 50, 50, 0.4); | ||
-webkit-box-shadow: 0px 4px 10px 0px rgba(50, 50, 50, 0.4); | ||
margin: 0.6em; | ||
padding: 10px 15px; | ||
text-align: center; | ||
z-index: 10; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
} | ||
.countdown { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.countdown .countdown-time { | ||
background: none; | ||
font-size: 100%; | ||
padding: 0; | ||
} | ||
.countdown-digits { | ||
color: #7aa81e; | ||
} | ||
.countdown.running { | ||
border-color: #6B9606FF; | ||
background-color: #7aa81e; | ||
} | ||
.countdown.running .countdown-digits { | ||
color: #FFFFFF; | ||
} | ||
.countdown.finished { | ||
border-color: #E98C64FF; | ||
background-color: #ffa07a; | ||
} | ||
.countdown.finished .countdown-digits { | ||
color: #FFFFFF; | ||
} | ||
.countdown.running.warning { | ||
border-color: #CEAC04FF; | ||
background-color: #E6C229; | ||
} | ||
.countdown.running.warning .countdown-digits { | ||
color: #3A2F02FF; | ||
} | ||
|
||
.countdown.running.blink-colon .countdown-digits.colon { | ||
opacity: 0.1; | ||
} | ||
|
||
/* ------ Controls ------ */ | ||
.countdown:not(.running) .countdown-controls { | ||
display: none; | ||
} | ||
|
||
.countdown-controls { | ||
position: absolute; | ||
top: -0.5rem; | ||
right: -0.5rem; | ||
left: -0.5rem; | ||
display: flex; | ||
justify-content: space-between; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.countdown-controls > button { | ||
font-size: 1.5rem; | ||
width: 1rem; | ||
height: 1rem; | ||
display: inline-block; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-family: monospace; | ||
padding: 10px; | ||
margin: 0; | ||
background: inherit; | ||
border: 2px solid; | ||
border-radius: 100%; | ||
transition: 50ms transform ease-in-out, 150ms opacity ease-in; | ||
--countdown-transition-distance: 10px; | ||
} | ||
|
||
.countdown .countdown-controls > button:last-child { | ||
transform: translate(calc(-1 * var(--countdown-transition-distance)), var(--countdown-transition-distance)); | ||
opacity: 0; | ||
color: #FFFFFF; | ||
background-color: #7aa81e; | ||
border-color: #6B9606FF; | ||
} | ||
|
||
.countdown .countdown-controls > button:first-child { | ||
transform: translate(var(--countdown-transition-distance), var(--countdown-transition-distance)); | ||
opacity: 0; | ||
color: #FFFFFF; | ||
background-color: #ffa07a; | ||
border-color: #E98C64FF; | ||
} | ||
|
||
.countdown.running:hover .countdown-controls > button, | ||
.countdown.running:focus-within .countdown-controls > button{ | ||
transform: translate(0, 0); | ||
opacity: 1; | ||
} | ||
|
||
.countdown.running:hover .countdown-controls > button:hover, | ||
.countdown.running:focus-within .countdown-controls > button:hover{ | ||
transform: translate(0, calc(var(--countdown-transition-distance) / -2)); | ||
box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.4); | ||
-webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.4); | ||
} | ||
|
||
.countdown.running:hover .countdown-controls > button:active, | ||
.countdown.running:focus-within .countdown-controls > button:active{ | ||
transform: translate(0, calc(var(--coutndown-transition-distance) / -5)); | ||
} | ||
|
||
/* ----- Fullscreen ----- */ | ||
.countdown.countdown-fullscreen { | ||
z-index: 0; | ||
} | ||
|
||
.countdown-fullscreen.running .countdown-controls { | ||
top: 1rem; | ||
left: 0; | ||
right: 0; | ||
justify-content: center; | ||
} | ||
|
||
.countdown-fullscreen.running .countdown-controls > button + button { | ||
margin-left: 1rem; | ||
} |
Oops, something went wrong.