2020-06-01 17:24:22 +00:00
|
|
|
body{background-color: rgb(60,50,70); color: silver; margin: 0px }
|
|
|
|
#ui{ display: flex; }
|
2020-09-04 06:48:21 +00:00
|
|
|
#site{ height: 100vh; overflow-y: auto; flex: 1 }
|
2020-06-01 17:24:22 +00:00
|
|
|
|
2020-07-18 05:39:34 +00:00
|
|
|
.categoryList{
|
2020-06-01 17:24:22 +00:00
|
|
|
padding-block: 1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-inline-end: 1px solid gold;
|
|
|
|
background-color: rgb(60,60,70);
|
|
|
|
max-height: 100vh;
|
|
|
|
overflow-y: auto;
|
2021-05-09 10:36:27 +00:00
|
|
|
min-width: 22ch
|
2020-06-01 17:24:22 +00:00
|
|
|
}
|
2020-07-19 10:51:44 +00:00
|
|
|
|
2020-07-19 11:05:27 +00:00
|
|
|
.categoryList.blurred{
|
2020-07-19 10:51:44 +00:00
|
|
|
background-color: rgb(20,20,30);
|
|
|
|
opacity: 0.5;
|
|
|
|
margin-inline-end: -13ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
#secondaryCategories{
|
|
|
|
position: relative;
|
|
|
|
z-index:1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.categoryList:hover{
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
background-color: rgb(60,60,70);
|
|
|
|
opacity: 1;
|
2021-05-09 10:36:27 +00:00
|
|
|
box-shadow: 0 0 26px 0 black;
|
2020-07-19 10:51:44 +00:00
|
|
|
}
|
|
|
|
|
2021-05-09 10:36:27 +00:00
|
|
|
a{ color: rgb(100,150,200); margin-inline-end: 0.4ch }
|
2020-12-06 13:55:51 +00:00
|
|
|
pre a{ margin: 0 }
|
2020-06-01 17:24:22 +00:00
|
|
|
a:visited{ color: rgb(150,100,200) }
|
|
|
|
a:hover{ color: rgb(200,150,100) }
|
|
|
|
pre:empty{ display: none }
|
2020-07-18 05:39:34 +00:00
|
|
|
.category{ padding: 0.2em 1em; cursor: pointer; text-transform: capitalize }
|
2020-09-04 06:48:21 +00:00
|
|
|
#categories > .category[data-value]::after{ content: " (" attr(data-value) ")"; float: right}
|
2020-06-01 17:24:22 +00:00
|
|
|
|
|
|
|
.currentCategory,
|
|
|
|
.category:hover{ background-color: grey }
|
|
|
|
|
2021-05-09 10:36:27 +00:00
|
|
|
.currentCategory::before{ content: "» " }
|
2020-07-18 05:39:34 +00:00
|
|
|
|
2020-06-01 17:24:22 +00:00
|
|
|
.target{
|
2020-06-05 10:38:44 +00:00
|
|
|
margin: 0.1em;
|
2020-06-01 17:24:22 +00:00
|
|
|
background-color: rgb(60,60,70);
|
2020-06-05 10:38:44 +00:00
|
|
|
padding: 0.3em;
|
2020-06-01 17:24:22 +00:00
|
|
|
border: 1px solid rgb(40,40,40);
|
|
|
|
border-radius: 4px;
|
2021-05-09 10:36:27 +00:00
|
|
|
max-width: 30%;
|
|
|
|
cursor: pointer;
|
|
|
|
white-space:nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-06-05 10:38:44 +00:00
|
|
|
}
|
|
|
|
.target > a{
|
2021-05-09 10:36:27 +00:00
|
|
|
display:inline-block;
|
2020-06-05 10:38:44 +00:00
|
|
|
width: 1.2em;
|
2021-05-09 10:36:27 +00:00
|
|
|
height: 80%;
|
2020-06-05 10:38:44 +00:00
|
|
|
background-image: url("ext.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
2020-06-01 17:24:22 +00:00
|
|
|
}
|
|
|
|
.target:hover{ background-color: rgb(80,80,90) }
|
2020-09-04 06:48:21 +00:00
|
|
|
.target > a:hover{ filter: drop-shadow(0 0 3px fuchsia) }
|
2020-07-19 10:51:44 +00:00
|
|
|
/*#targets{ display: grid; grid-template-columns: 1fr 1fr 1fr }*/
|
|
|
|
#targets{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
max-height: calc(var(--grid-rows) * 2.4rem);
|
|
|
|
}
|
2020-06-01 17:24:22 +00:00
|
|
|
|
|
|
|
pre{
|
|
|
|
white-space: pre-wrap;
|
|
|
|
margin: 1em;
|
|
|
|
border: 2px inset;
|
2021-05-09 10:36:27 +00:00
|
|
|
padding: 0 0 0 2em;
|
|
|
|
background-color: rgb(30,30,40);
|
|
|
|
}
|
|
|
|
|
|
|
|
pre > div{
|
|
|
|
background-color: rgb(40,37,43);;
|
|
|
|
padding: 1em 0.5em;
|
|
|
|
border-inline-start: 1px solid rgb(90,90,90)
|
2020-06-01 17:24:22 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 11:05:27 +00:00
|
|
|
.categoryList:not(.blurred)+.categoryList,
|
2020-06-01 17:24:22 +00:00
|
|
|
.hidden{ display: none !important }
|
|
|
|
|
2020-09-02 08:42:30 +00:00
|
|
|
.comment{ color: rgb(50,180,20) }
|
2021-05-09 10:36:27 +00:00
|
|
|
.selector{ color: palegoldenrod }
|
2020-09-13 19:01:57 +00:00
|
|
|
.pseudo{ color: silver }
|
|
|
|
.id{ color: lightcoral }
|
|
|
|
.class{ color: lightgreen }
|
|
|
|
.attribute{ color: cyan }
|
2021-05-09 10:36:27 +00:00
|
|
|
.atrule{ color: mediumslateblue }
|
2020-09-13 19:01:57 +00:00
|
|
|
.atvalue{ color: lightblue }
|
2020-09-02 08:42:30 +00:00
|
|
|
.property{ color: orange }
|
2020-09-03 09:07:52 +00:00
|
|
|
.value{ color: skyblue }
|
|
|
|
.curly{ color: orangered }
|