From a851a2d646f439f7126c232ba1524c55a8990872 Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Fri, 9 Jan 2026 16:45:56 +0800 Subject: Remove _site from git. --- _site/assets/css/main.css | 254 ---------------------------------------------- 1 file changed, 254 deletions(-) delete mode 100644 _site/assets/css/main.css (limited to '_site/assets/css/main.css') diff --git a/_site/assets/css/main.css b/_site/assets/css/main.css deleted file mode 100644 index 1b4341b..0000000 --- a/_site/assets/css/main.css +++ /dev/null @@ -1,254 +0,0 @@ -:root { - --main-bg-color: #202020; - --main-fg-color: #00B140; -} - -*, -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -body { - height: 100%; - text-decoration-skip: ink; - color: var(--main-fg-color); - padding-top: 10px; - font-family: 'Roboto Mono', monospace; - background-color: var(--main-bg-color); - background-size: 2px 2px; - text-shadow: 0 0 1px var(--main-fg-color), 0 0 6px var(--main-fg-color); -} - -::selection { - color: var(--main-bg-color); - background: var(--main-fg-color); - text-shadow: 0 0 1px var(--main-bg-color), 0 0 6px var(--main-bg-color); -} -::-moz-selection { - color: var(--main-bg-color); - background: var(--main-fg-color); - text-shadow: 0 0 1px var(--main-bg-color), 0 0 6px var(--main-bg-color); -} - -.footer { - position: relative; - bottom: 0; - width: 100%; - padding-top: 10px; - padding-bottom: 10px; - color: rgba(47, 47, 47, 0.6) -} - -a { - cursor: default; - color: var(--main-fg-color); - text-decoration: underline 1.5px; - text-underline-offset: 2.5px; -} - -.link-decor-none { - text-decoration: none; -} - -img { - width: 100%; -} - -table { - width: 100%; -} - -table, tr, td { - border: none !important; -} - -td { - background-color: transparent; -} - -.project-item { - border: none; - vertical-align: top; - width: 50%; -} - -#navlist -{ - list-style-type: none; - margin-left: 0 !important; -} - -#navlist li -{ - display: inline; - list-style-type: none inside; - padding-right: 20px; -} - -#navlist > .active > a { - font-weight: 600; - text-decoration: none; -} - -@media (min-width: 400px) { - #nav-container { - padding: 0 6px; - } - .container-2 { - padding: 0 3px; - } -} - -@media (min-width: 550px) { - .post-container { - padding: 0; - } -} - -.author { - font-size: 1.3em; - padding-top: 20px; -} - -.tagline { - padding-top: 20px; -} - -.cursor::after { - height: 2.5rem; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.justify { - text-align: justify; -} - -.twocol::first-letter { - font-size: 2.5em; -} - -.twocol { - -ms-word-break: keep-all; - word-break: keep-all; - hyphens: auto; - -webkit-hyphens: auto; - -moz-hyphens: auto; -} - -@media only screen -and (min-device-width : 768px) { - .twocol { - -moz-column-count: 2; - -moz-column-gap: 20px; - -webkit-column-count: 2; - -webkit-column-gap: 20px; - column-count: 2; - column-gap: 20px; - width: 100%; - } - .tag{ - width: 23%; - margin-right:0; - } -} - -.posts-td { - border: none; - vertical-align: top; -} - -.posts-td-time { - min-width: 100px; - white-space: nowrap; -} - -.author { - margin-bottom: 2rem; -} - -#footer-text { - font-size: 14px; -} - -.post-author { - margin-top: 4px; -} - -pre { - border: none; - max-height: 400px; - overflow-y: auto; - scrollbar-width: none; - -ms-overflow-style: none; -} - -pre::-webkit-scrollbar { - display: none; -} - -.typewriter-1 { - overflow: hidden; - white-space: nowrap; - margin: 0 auto; - animation: typing 3s steps(40, end); -} - -.typewriter-2 { - overflow: hidden; - visibility: hidden; - white-space: nowrap; - margin: 0 auto; - animation: typing 3s steps(40, end); - animation-delay: 2.5s; - animation-fill-mode: forwards; -} - -@keyframes typing { - 0% { width: 0; visibility: visible; } - 100% { width: 100%; visibility: visible; } -} - -.typewriter-2::after { - filter: brightness(0.9); - background-color: var(--main-fg-color); - box-shadow: 0 0 1px var(--main-fg-color), 0 0 6px var(--main-fg-color); - content: ''; - display: inline-block; - width: 1.3rem; - height: 1.9rem; - margin-left: -8px; - animation: cursor-blink 1s steps(1, start) infinite; - animation-delay: 3.5s; -} - -@keyframes cursor-blink { - 0% { visibility: visible; } - 50% { visibility: hidden; } - 100% { visibility: visible; } -} - -#search-box { - border-radius: 0; - border-color: var(--main-fg-color); - color: var(--main-fg-color) !important; - background-color: var(--main-bg-color); - text-shadow: 0 0 1px var(--main-fg-color), 0 0 6px var(--main-fg-color); -} - -#search-btn { - border-radius: 0; - border-color: var(--main-fg-color); - color: var(--main-fg-color); - background-color: var(--main-bg-color); - text-shadow: 0 0 1px var(--main-fg-color), 0 0 6px var(--main-fg-color); -} -- cgit v1.2.3