Last active
September 25, 2016 03:19
-
-
Save markhc/f7542f01c2d0e902a99b8acd7395ca21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.yazzn { | |
box-sizing: border-box; | |
} | |
@media screen and (min-width: 999px) { | |
code.hljs.javascript { | |
border-radius: 5px; | |
max-width: 640px; | |
max-width: calc(100vw - 347px); | |
max-height: 700px; | |
} | |
} | |
@media screen and (max-width: 999px) { | |
code.hljs.javascript { | |
border-radius: 5px; | |
max-width: 640px; | |
max-height: 700px; | |
} | |
} | |
blob-wrapper { | |
overflow-x:auto; | |
overflow-y:hidden; | |
border-bottom-right-radius:3px; | |
border-bottom-left-radius:3px; | |
} | |
tbody.yazzn { | |
display: table-row-group; | |
vertical-align: middle; | |
border-color: inherit; | |
} | |
table.yazzn { | |
border-spacing: 0; | |
border-collapse: collapse; | |
} | |
tr.yazzn { | |
display: table-row; | |
vertical-align: inherit; | |
border-color: inherit; | |
} | |
.blob-num { | |
width: 1%; | |
min-width: 50px; | |
padding-right: 10px; | |
padding-left: 10px; | |
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
font-size: 12px; | |
line-height: 20px; | |
color: #aaaaaa; | |
text-align: right; | |
white-space: nowrap; | |
vertical-align: top; | |
cursor: pointer; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
border: solid #eee; | |
border-width: 0 1px 0 0; | |
} | |
.blob-code { | |
position: relative; | |
padding-right: 10px; | |
padding-left: 10px; | |
line-height: 20px; | |
vertical-align: top; | |
} | |
.blob-code-inner { | |
overflow: visible; | |
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
font-size: 12px; | |
/*color: #333;*/ | |
word-wrap: normal; | |
white-space: pre; | |
padding-left: 10px; | |
} | |
td.yazzn, th.yazzn { | |
padding-left: 10px; | |
padding-right: 10px; | |
display: table-cell; | |
vertical-align: inherit; | |
} | |
.tab-size[data-tab-size="8"] { | |
-moz-tab-size: 8; | |
-o-tab-size: 8; | |
tab-size: 8; | |
} | |
code { | |
counter-reset: linecounter; | |
padding: 0; | |
} | |
td.blob-num { | |
counter-increment: linecounter; | |
} | |
td.blob-num:before { | |
content: counter(linecounter); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment