diff options
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/main.css | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 7658373..6b7462b 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -50,6 +50,26 @@ nav.navbar { text-align: center; } +.list-stylized { + background: rgba(0, 0, 0, .5) !important; + color: white !important; +} + +.list-stylized:hover { + background: rgba(0, 0, 0, .75) !important; + color: rgba(255, 255, 255, .75) !important; +} + +.list-stylized:active, .list-stylized:focus { + background: black !important; + color: rgba(255, 255, 255, .5) !important; +} + +.list-stylized.list-stylized-static, .list-stylized.list-stylized-static:hover, .list-stylized.list-stylized-static:active, .list-stylized.list-stylized-static:focus { + background: rgba(0, 0, 0, .5) !important; + color: white !important; +} + .stylized-card-icon { width: 64px; height: 64px; @@ -67,4 +87,65 @@ nav.navbar { width: 48px; height: 48px; vertical-align: middle; +} + +.archive-icon { + width: 24px !important; + height: 24px !important; + border-radius: 5px; + background: rgba(255, 255, 255, .1); +} + +.small-ln { + font-size: small; + text-decoration: none; + opacity: .75; + margin-bottom: 10px; + display: inline-block; +} + +.ln:hover { + color: rgba(255, 255, 255, .75); + text-decoration: underline; +} + +.ln:active, .ln:focus { + color: rgba(255, 255, 255, .5); +} + +blockquote { + padding: 0.5rem 0 0.5rem 0.5rem; + margin: 0.1rem 0 0.1rem 0.25rem; + border-left: 3px solid white; +} + +.stylized-quote { + opacity: .5; +} + +code { + background: rgba(255, 255, 255, .1); + padding: 2px 5px; + border-radius: 2px; +} + +pre code { + background: transparent !important; + border-radius: 0 !important; + padding: 0 !important; +} + +blockquote > p:nth-child(1):nth-last-child(1) { + margin: 0 !important; +} + +.ln-hidden { + text-decoration: none; +} + +pre { + background: rgba(0, 0, 0, .5); + padding: 10px 20px; + border-radius: 5px; + border: 1px solid black; }
\ No newline at end of file |