diff options
| author | Bobby <[email protected]> | 2022-10-01 13:10:03 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-10-01 13:10:03 -0400 |
| commit | 1baaddc8096ee2ff1a51db39ce6133a372d2a3ef (patch) | |
| tree | 79a7b225f471b440dc90b24d8fc7cde34c932379 /static/css/main.css | |
| parent | 6aea05e6c6d26371e6f32ea7b260b65e759c1a6a (diff) | |
| download | thatcomputerscientist-1baaddc8096ee2ff1a51db39ce6133a372d2a3ef.tar.xz thatcomputerscientist-1baaddc8096ee2ff1a51db39ce6133a372d2a3ef.zip | |
Added source code visualizer
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index 47ba85a3..469d4484 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -366,3 +366,51 @@ li.new::before{ border-radius: 0 0 0 5px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } + +.file { + padding: 4px 0px; + display: flex; + flex-direction: row; + flex-wrap: wrap; + width: 100%; +} + +.file > div { + color: #cecece; +} + +.file > a { + color: #cecece; + text-decoration: none; +} + +.ft-file { + width: 32px; + background-image: url('../images/icons/file.ico'); + background-repeat: no-repeat; + background-position: center; + margin-right: 10px; + background-size: contain; +} + +.ft-dir { + width: 32px; + background-image: url('../images/icons/folder.ico'); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + margin-right: 10px; +} + +.file-name:hover { + cursor: pointer; + text-decoration: underline; +} + +.file-meta.file-meta-dark { + display: none; +} + +.hljs-style-github-dark-dimmed .hljs { + background: rgb(34 39 46 / 0%) !important; +} |
