1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

start building out the docs

This commit is contained in:
Jordan Scales
2020-04-20 14:23:06 -04:00
parent 666d3457a6
commit d12341bae0
4 changed files with 243 additions and 54 deletions

View File

@@ -65,6 +65,7 @@ button {
min-width: 75px;
min-height: 23px;
padding: 0 12px;
}
button:active {
@@ -85,6 +86,7 @@ button:focus {
.dialog {
box-shadow: var(--border-raised-outer), var(--border-raised-inner);
background: var(--surface);
padding: 3px;
}
.menubar {
@@ -93,7 +95,6 @@ button:focus {
var(--dialog-blue),
var(--dialog-blue-light)
);
margin: 2px;
padding: 2px;
display: flex;
justify-content: space-between;
@@ -112,6 +113,7 @@ button:focus {
}
.menubar-controls button {
padding: 0;
display: block;
min-width: 14px;
min-height: 12px;
@@ -350,9 +352,11 @@ a:focus {
}
ul.treeview {
display: block;
background: var(--button-highlight);
box-shadow: var(--border-field);
padding: 6px 20px 6px 6px;
padding: 6px;
margin: 0;
}
ul.treeview li {
@@ -406,6 +410,15 @@ ul.treeview ul > li:last-child::after {
background: var(--button-highlight);
}
pre code {
display: block;
background: var(--button-highlight);
box-shadow: var(--border-field);
padding: 12px 8px;
margin: 0;
font-family: monospace;
}
::-webkit-scrollbar {
width: 16px;
}
@@ -442,10 +455,3 @@ ul.treeview ul > li:last-child::after {
width: 16px;
background-image: url("./button-right.svg");
}
/*
div::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-button {
box-shadow: var(--border-raised-outer), var(--border-raised-inner);
}
*/