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

closing notes, readme, etc

This commit is contained in:
Jordan Scales
2020-04-21 19:18:56 -04:00
parent 81d824116a
commit 1f3cf57373
10 changed files with 246 additions and 139 deletions

View File

@@ -1,3 +1,9 @@
/**
* 98.css
* Copyright (c) 2020 Jordan Scales <thatjdanisso.cool>
* https://github.com/jdan/98.css/blob/master/LICENSE
*/
:root {
/* Color */
--surface: #c0c0c0;
@@ -359,7 +365,7 @@ a:focus {
outline: 1px dotted var(--link-blue);
}
ul.treeview {
ul.tree-view {
display: block;
background: var(--button-highlight);
box-shadow: var(--border-field);
@@ -367,36 +373,36 @@ ul.treeview {
margin: 0;
}
ul.treeview li {
ul.tree-view li {
list-style-type: none;
}
ul.treeview a {
ul.tree-view a {
text-decoration: none;
color: #000;
}
ul.treeview a:focus {
ul.tree-view a:focus {
background-color: var(--dialog-blue);
color: var(--button-highlight);
}
ul.treeview ul,
ul.treeview li {
ul.tree-view ul,
ul.tree-view li {
margin-top: 3px;
}
ul.treeview ul {
ul.tree-view ul {
margin-left: 16px;
padding-left: 16px;
/* Goes down too far */
border-left: 1px dotted #808080;
}
ul.treeview ul > li {
ul.tree-view ul > li {
position: relative;
}
ul.treeview ul > li::before {
ul.tree-view ul > li::before {
content: "";
display: block;
position: absolute;
@@ -407,7 +413,7 @@ ul.treeview ul > li::before {
}
/* Cover the bottom of the left dotted border */
ul.treeview ul > li:last-child::after {
ul.tree-view ul > li:last-child::after {
content: "";
display: block;
position: absolute;