Compare commits
3 Commits
e964003387
...
7acb8be445
| Author | SHA1 | Date | |
|---|---|---|---|
| 7acb8be445 | |||
| 0aa0e014d6 | |||
| cde170e179 |
1059
css/latex.css
1059
css/latex.css
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -784,7 +784,8 @@ pre.scroll-one-half {
|
|||||||
* ==========
|
* ==========
|
||||||
*/
|
*/
|
||||||
.topic-list {
|
.topic-list {
|
||||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
||||||
|
z-index: 500;
|
||||||
|
|
||||||
.topic-list-search {
|
.topic-list-search {
|
||||||
display: block;
|
display: block;
|
||||||
@ -808,3 +809,54 @@ pre.scroll-one-half {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Help Menu
|
||||||
|
* ==========
|
||||||
|
*/
|
||||||
|
|
||||||
|
#help-menu-wrapper {
|
||||||
|
display: none;
|
||||||
|
max-width: 90vw;
|
||||||
|
width: 800px;
|
||||||
|
height: 80vh;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 2rem;
|
||||||
|
position: fixed;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateX(-50%) translateY(-50%);
|
||||||
|
z-index: 500;
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
||||||
|
opacity: 0;
|
||||||
|
transition: .2s opacity ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#help-menu-checkbox:checked ~ #help-menu-wrapper {
|
||||||
|
opacity: 1;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#help-menu-checkbox {
|
||||||
|
position: fixed;
|
||||||
|
right: 150vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#help-menu-toggle {
|
||||||
|
position: fixed;
|
||||||
|
right: 1rem;
|
||||||
|
bottom: 1rem;
|
||||||
|
width: 3rem;
|
||||||
|
height: 3rem;
|
||||||
|
color: white;
|
||||||
|
background-color: rgba(0, 0, 0, .3);
|
||||||
|
transition: .1s background-color ease-in-out;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -12,6 +12,7 @@
|
|||||||
<body>
|
<body>
|
||||||
@slides
|
@slides
|
||||||
<div id="progress-bar"></div>
|
<div id="progress-bar"></div>
|
||||||
|
@help
|
||||||
|
|
||||||
<script src="onpoint/onpoint.js"></script>
|
<script src="onpoint/onpoint.js"></script>
|
||||||
<script src="lib/highlightjs/highlight.pack.js"/>
|
<script src="lib/highlightjs/highlight.pack.js"/>
|
||||||
|
|||||||
2
onpoint
2
onpoint
@ -1 +1 @@
|
|||||||
Subproject commit 3f7bd12ea014fbf3a08fe536c02107e9fe9d0e7b
|
Subproject commit d4576532e9a74fd7cdec99a7e308dcba574e5783
|
||||||
Loading…
x
Reference in New Issue
Block a user