summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-08-28 11:50:57 -0400
committerpommicket <pommicket@gmail.com>2023-08-28 11:50:57 -0400
commitf4cc8ce7a8712e2e840b0c120a3f86eadb665626 (patch)
tree36f5ee546dce6395006decc50418ccf7505f4237 /style.css
parentf790b4e1baa5dfe1296cf0887011583bee7afca8 (diff)
add, sub, div, more work on the guide
Diffstat (limited to 'style.css')
-rw-r--r--style.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/style.css b/style.css
index 6d21621..4bcd692 100644
--- a/style.css
+++ b/style.css
@@ -246,6 +246,46 @@ input[type='number'] {
.ui-section label {
margin: auto;
}
+
+#guide-body {
+ display: flex;
+ margin: 0;
+}
+
+#guide-sidebar {
+ flex: 1;
+ border-right: 2px solid white;
+ height: 100vh;
+ position: sticky;
+ background: #333;
+}
+
+#guide-contents {
+ flex: 4;
+ padding: 4px;
+}
+
+.guide-sidebar-item,
+.guide-sidebar-heading {
+ border-bottom: 1px solid #fff2;
+ padding: 4px;
+ text-decoration: none;
+ display: block;
+ margin: 0;
+}
+
+.guide-sidebar-item:hover {
+ background: #8fc3;
+}
+
+.guide-sidebar-item-indented {
+ padding-left: 20%;
+}
+
+.guide-sidebar-item-active {
+ font-weight: bold;
+}
+
.inline-block {
display: inline-block;
}