This commit is contained in:
Mstrdav 2021-02-04 22:31:34 +01:00
parent 804a7789df
commit ce60781f91

View file

@ -63,7 +63,6 @@ body:before {
margin-left: 10px; margin-left: 10px;
padding-bottom: 10px; padding-bottom: 10px;
font-weight: lighter; font-weight: lighter;
border-bottom: 8px solid #eee;
display: inline; display: inline;
} }
@ -227,9 +226,11 @@ code:not(.inline) {
overflow-x: scroll; overflow-x: scroll;
font-size: 120%; font-size: 120%;
padding: 20px 50px 22px 15px; padding: 20px 50px 22px 25px;
border-bottom: 10px solid #222; border-left: 10px solid #444;
line-height: 1.55; line-height: 1.55;
transition: all .3s;
} }
code * { code * {
@ -247,6 +248,7 @@ code div {
height: 42px; height: 42px;
width: 42px; width: 42px;
background: #333; background: #333;
cursor: pointer;
} }
code div.theme { code div.theme {
@ -302,25 +304,16 @@ span.uident{
color: rgb(203, 203, 53); color: rgb(203, 203, 53);
} }
.light code:not(.inline) { code:not(.inline).light {
z-index: 2; background: rgba(250,250,250,0.8);
background: black; color: black;
width: min(94vw, 900px); border-color: #aaa;
border-radius: 12px; transition: all .3s;
margin-left: 3vw; }
margin-top: 20px;
font-family: monospace;
display: block;
color: white;
tab-size: 2; .light div {
white-space: pre; background: #aaa;
transition: all .3s;
overflow-x: scroll;
font-size: 120%;
padding: 20px 50px 22px 15px;
border-bottom: 10px solid #222;
line-height: 1.55;
} }
code * { code * {
@ -331,7 +324,7 @@ code * {
.light span.comment { .light span.comment {
font-style: italic; font-style: italic;
color: rgb(204, 209, 209); color: #555;
white-space: pre; white-space: pre;
} }