liddlelab-theme 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/_includes/adsense-under-header.html +12 -0
- data/_includes/featuredbox.html +55 -0
- data/_includes/giscus.html +15 -0
- data/_includes/pagination.html +25 -0
- data/_includes/postbox.html +51 -0
- data/_includes/search-lunr.html +21 -0
- data/_includes/share.html +25 -0
- data/_layouts/archive.html +21 -0
- data/_layouts/blog.html +168 -0
- data/_layouts/categories.html +23 -0
- data/_layouts/default.html +117 -0
- data/_layouts/page.html +24 -0
- data/_layouts/post.html +180 -0
- data/_layouts/tags.html +23 -0
- data/assets/css/main.css +572 -0
- data/assets/img/android-chrome-192x192.png +0 -0
- data/assets/img/android-chrome-512x512.png +0 -0
- data/assets/img/apple-touch-icon.png +0 -0
- data/assets/img/favicon-16x16.png +0 -0
- data/assets/img/favicon-32x32.png +0 -0
- data/assets/img/favicon.ico +0 -0
- data/assets/img/logo.png +0 -0
- data/assets/img/sample.jpg +0 -0
- data/assets/img/sample2.jpg +0 -0
- data/assets/js/lunr.js +2977 -0
- data/assets/js/lunrsearchengine.js +89 -0
- data/blog/index.html +54 -0
- metadata +195 -0
    
        data/assets/css/main.css
    ADDED
    
    | @@ -0,0 +1,572 @@ | |
| 1 | 
            +
            body{
         | 
| 2 | 
            +
                background-color: #011736;
         | 
| 3 | 
            +
                color: #d3d3d3;
         | 
| 4 | 
            +
            }
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            img {
         | 
| 7 | 
            +
                max-width: 100%;
         | 
| 8 | 
            +
            }
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            .navbar-brand h1 {
         | 
| 11 | 
            +
                color: #44ff00;
         | 
| 12 | 
            +
            }
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            nav {
         | 
| 15 | 
            +
                background: #011736;
         | 
| 16 | 
            +
                box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .15);
         | 
| 17 | 
            +
                transition: top 0.2s ease-in-out;
         | 
| 18 | 
            +
            }
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            .navbar-brand img {
         | 
| 21 | 
            +
                max-height: 30px;
         | 
| 22 | 
            +
                margin-right: 5px;
         | 
| 23 | 
            +
            }
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            .site-content {
         | 
| 26 | 
            +
                min-height: 60vh;
         | 
| 27 | 
            +
                padding-top: 1.5rem;
         | 
| 28 | 
            +
                margin-top: 57px;
         | 
| 29 | 
            +
                transition: all 0.4s;
         | 
| 30 | 
            +
            }
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            section {
         | 
| 33 | 
            +
                margin-bottom: 20px;
         | 
| 34 | 
            +
            }
         | 
| 35 | 
            +
             | 
| 36 | 
            +
            section.recent-posts {
         | 
| 37 | 
            +
                margin-bottom: 0;
         | 
| 38 | 
            +
            }
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            .section-title h2 {
         | 
| 41 | 
            +
                border-bottom: 1px solid rgba(255, 255, 255, 0.125);
         | 
| 42 | 
            +
                margin-bottom: 25px;
         | 
| 43 | 
            +
                font-weight: 700;
         | 
| 44 | 
            +
                font-size: 1.4rem;
         | 
| 45 | 
            +
                margin-bottom: 27px;
         | 
| 46 | 
            +
            }
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            .section-title span {
         | 
| 49 | 
            +
                border-bottom: 1px solid rgba(0, 0, 0, .44);
         | 
| 50 | 
            +
                display: inline-block;
         | 
| 51 | 
            +
                padding-bottom: 20px;
         | 
| 52 | 
            +
                margin-bottom: -1px;
         | 
| 53 | 
            +
            }
         | 
| 54 | 
            +
             | 
| 55 | 
            +
            .bottompagination span.navigation {
         | 
| 56 | 
            +
                display: block;
         | 
| 57 | 
            +
                font-size: 0.93rem;
         | 
| 58 | 
            +
                padding: 15px 0 0 0;
         | 
| 59 | 
            +
                text-align: center;
         | 
| 60 | 
            +
                margin-bottom: 0rem;
         | 
| 61 | 
            +
                color: #999;
         | 
| 62 | 
            +
                border-top: 1px solid #ddd;
         | 
| 63 | 
            +
            }
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            .pointerup {
         | 
| 66 | 
            +
                margin-bottom: -17px;
         | 
| 67 | 
            +
                margin-left: 49%;
         | 
| 68 | 
            +
                font-size: 30px;
         | 
| 69 | 
            +
            }
         | 
| 70 | 
            +
             | 
| 71 | 
            +
            .pointerup i.fa {
         | 
| 72 | 
            +
                color: #eaeaea;
         | 
| 73 | 
            +
            }
         | 
| 74 | 
            +
             | 
| 75 | 
            +
            .bottompagination span.navigation i {
         | 
| 76 | 
            +
                display: inline-block;
         | 
| 77 | 
            +
            }
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            span.navigation {
         | 
| 80 | 
            +
                display: inline-block;
         | 
| 81 | 
            +
                font-size: 0.93rem;
         | 
| 82 | 
            +
                font-weight: 700;
         | 
| 83 | 
            +
                text-align: center;
         | 
| 84 | 
            +
            }
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            .pagination {
         | 
| 87 | 
            +
                display: block;
         | 
| 88 | 
            +
            }
         | 
| 89 | 
            +
             | 
| 90 | 
            +
            .mb-30px {
         | 
| 91 | 
            +
                margin-bottom: 30px;
         | 
| 92 | 
            +
            }
         | 
| 93 | 
            +
             | 
| 94 | 
            +
            iframe {
         | 
| 95 | 
            +
                max-width: 1
         | 
| 96 | 
            +
            }
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            .mainheading {
         | 
| 99 | 
            +
                padding: 1rem 0rem;
         | 
| 100 | 
            +
            }
         | 
| 101 | 
            +
             | 
| 102 | 
            +
            .mainheading h1.sitetitle {
         | 
| 103 | 
            +
                font-family: Righteous;
         | 
| 104 | 
            +
            }
         | 
| 105 | 
            +
             | 
| 106 | 
            +
            .mainheading h1.posttitle {
         | 
| 107 | 
            +
                font-weight: 700;
         | 
| 108 | 
            +
                margin-bottom: 1rem;
         | 
| 109 | 
            +
            }
         | 
| 110 | 
            +
             | 
| 111 | 
            +
            .post-top-meta .author-description {
         | 
| 112 | 
            +
                margin-bottom: 5px;
         | 
| 113 | 
            +
                margin-top: 5px;
         | 
| 114 | 
            +
                font-size: 0.95rem;
         | 
| 115 | 
            +
                color: rgba(255, 255, 255, 0.6);
         | 
| 116 | 
            +
            }
         | 
| 117 | 
            +
             | 
| 118 | 
            +
            .authorpage .author-description {
         | 
| 119 | 
            +
                font-size: 1rem;
         | 
| 120 | 
            +
                color: rgba(255, 255, 255, 0.6);
         | 
| 121 | 
            +
            }
         | 
| 122 | 
            +
             | 
| 123 | 
            +
            .share {
         | 
| 124 | 
            +
                text-align: center;
         | 
| 125 | 
            +
            }
         | 
| 126 | 
            +
             | 
| 127 | 
            +
            .share,
         | 
| 128 | 
            +
            .share a {
         | 
| 129 | 
            +
                color: #ffffff;
         | 
| 130 | 
            +
                fill: rgba(255, 255, 255, .44);
         | 
| 131 | 
            +
            }
         | 
| 132 | 
            +
             | 
| 133 | 
            +
            .share p {
         | 
| 134 | 
            +
                margin-bottom: 10px;
         | 
| 135 | 
            +
                font-size: 0.95rem;
         | 
| 136 | 
            +
            }
         | 
| 137 | 
            +
             | 
| 138 | 
            +
            .share ul li {
         | 
| 139 | 
            +
                display: inline-block;
         | 
| 140 | 
            +
                margin-bottom: 9px;
         | 
| 141 | 
            +
            }
         | 
| 142 | 
            +
             | 
| 143 | 
            +
            .share ul {
         | 
| 144 | 
            +
                padding-left: 0;
         | 
| 145 | 
            +
                margin-left: 0;
         | 
| 146 | 
            +
            }
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            .share ul li i.fa {
         | 
| 149 | 
            +
                border: 1px solid #ddd;
         | 
| 150 | 
            +
                width: 30px;
         | 
| 151 | 
            +
                height: 30px;
         | 
| 152 | 
            +
                line-height: 30px;
         | 
| 153 | 
            +
                text-align: center;
         | 
| 154 | 
            +
                border-radius: 50%;
         | 
| 155 | 
            +
            }
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            .svgIcon {
         | 
| 158 | 
            +
                vertical-align: middle;
         | 
| 159 | 
            +
            }
         | 
| 160 | 
            +
             | 
| 161 | 
            +
            .sticky-top-80 {
         | 
| 162 | 
            +
                top: 80px;
         | 
| 163 | 
            +
            }
         | 
| 164 | 
            +
             | 
| 165 | 
            +
            .sticky-top-offset {
         | 
| 166 | 
            +
                top: 100px;
         | 
| 167 | 
            +
            }
         | 
| 168 | 
            +
             | 
| 169 | 
            +
            .card {
         | 
| 170 | 
            +
                color: #d3d3d3;
         | 
| 171 | 
            +
            }
         | 
| 172 | 
            +
             | 
| 173 | 
            +
            .card-title a {
         | 
| 174 | 
            +
                color: #d3d3d3;
         | 
| 175 | 
            +
            }
         | 
| 176 | 
            +
             | 
| 177 | 
            +
            .featured-image {
         | 
| 178 | 
            +
                display: block;
         | 
| 179 | 
            +
                margin-bottom: 1.5rem;
         | 
| 180 | 
            +
            }
         | 
| 181 | 
            +
             | 
| 182 | 
            +
            .card .img-fluid {
         | 
| 183 | 
            +
                width: 100%;
         | 
| 184 | 
            +
            }
         | 
| 185 | 
            +
             | 
| 186 | 
            +
            .listfeaturedtag {
         | 
| 187 | 
            +
                background-color: #353a40;
         | 
| 188 | 
            +
                border: 1px solid rgba(0, 0, 0, .125);
         | 
| 189 | 
            +
                border-radius: .25rem;
         | 
| 190 | 
            +
                transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
         | 
| 191 | 
            +
            }
         | 
| 192 | 
            +
             | 
| 193 | 
            +
            .listfeaturedtag .wrapthumbnail {
         | 
| 194 | 
            +
                height: 290px;
         | 
| 195 | 
            +
                flex: 0 0 auto;
         | 
| 196 | 
            +
                height: 100%;
         | 
| 197 | 
            +
            }
         | 
| 198 | 
            +
             | 
| 199 | 
            +
            .maxthumb {
         | 
| 200 | 
            +
                max-height: 300px;
         | 
| 201 | 
            +
                overflow: hidden;
         | 
| 202 | 
            +
            }
         | 
| 203 | 
            +
             | 
| 204 | 
            +
            .listfeaturedtag .card,
         | 
| 205 | 
            +
            .card-footer {
         | 
| 206 | 
            +
                border: 0;
         | 
| 207 | 
            +
            }
         | 
| 208 | 
            +
             | 
| 209 | 
            +
            .listfeaturedtag .thumbnail {
         | 
| 210 | 
            +
                background-size: cover;
         | 
| 211 | 
            +
                height: 100%;
         | 
| 212 | 
            +
                display: block;
         | 
| 213 | 
            +
                background-position: 38% 22% !important;
         | 
| 214 | 
            +
                background-origin: border-box !important;
         | 
| 215 | 
            +
                border-top-left-radius: .25rem;
         | 
| 216 | 
            +
                border-bottom-left-radius: .25rem;
         | 
| 217 | 
            +
            }
         | 
| 218 | 
            +
             | 
| 219 | 
            +
            .listfeaturedtag .card-block {
         | 
| 220 | 
            +
                padding-left: 0;
         | 
| 221 | 
            +
            }
         | 
| 222 | 
            +
             | 
| 223 | 
            +
            .listfeaturedtag h2.card-title,
         | 
| 224 | 
            +
            .listrecent h2.card-title {
         | 
| 225 | 
            +
                font-size: 1.3rem;
         | 
| 226 | 
            +
                font-weight: 700;
         | 
| 227 | 
            +
                line-height: 1.25;
         | 
| 228 | 
            +
            }
         | 
| 229 | 
            +
             | 
| 230 | 
            +
            .listfeaturedtag h4.card-text,
         | 
| 231 | 
            +
            .listrecent h4.card-text {
         | 
| 232 | 
            +
                font-size: 0.95rem;
         | 
| 233 | 
            +
                line-height: 1.6;
         | 
| 234 | 
            +
                font-weight: 400;
         | 
| 235 | 
            +
            }
         | 
| 236 | 
            +
             | 
| 237 | 
            +
            .listfeaturedtag .card,
         | 
| 238 | 
            +
            .card-footer {
         | 
| 239 | 
            +
                border: 0;
         | 
| 240 | 
            +
            }
         | 
| 241 | 
            +
             | 
| 242 | 
            +
            .author-thumb {
         | 
| 243 | 
            +
                width: 40px;
         | 
| 244 | 
            +
                height: 40px;
         | 
| 245 | 
            +
                margin-right: 13px;
         | 
| 246 | 
            +
                border-radius: 100%;
         | 
| 247 | 
            +
            }
         | 
| 248 | 
            +
             | 
| 249 | 
            +
            .post-top-meta {
         | 
| 250 | 
            +
                margin-bottom: 2rem;
         | 
| 251 | 
            +
            }
         | 
| 252 | 
            +
             | 
| 253 | 
            +
            .post-top-meta .author-thumb {
         | 
| 254 | 
            +
                width: 72px;
         | 
| 255 | 
            +
                height: 72px;
         | 
| 256 | 
            +
            }
         | 
| 257 | 
            +
             | 
| 258 | 
            +
            .post-top-meta.authorpage .author-thumb {
         | 
| 259 | 
            +
                margin-top: 40px;
         | 
| 260 | 
            +
            }
         | 
| 261 | 
            +
             | 
| 262 | 
            +
            .post-top-meta span {
         | 
| 263 | 
            +
                font-size: 0.9rem;
         | 
| 264 | 
            +
                color: rgba(0, 0, 0, .44);
         | 
| 265 | 
            +
                display: inline-block;
         | 
| 266 | 
            +
            }
         | 
| 267 | 
            +
             | 
| 268 | 
            +
            .footer {
         | 
| 269 | 
            +
                border-top: 1px solid #d3d3d3 !important;
         | 
| 270 | 
            +
                padding-top: 15px;
         | 
| 271 | 
            +
                padding-bottom: 12px;
         | 
| 272 | 
            +
                font-size: 0.8rem;
         | 
| 273 | 
            +
                color: #d3d3d3;
         | 
| 274 | 
            +
                margin-top: 50px;
         | 
| 275 | 
            +
                margin-bottom: 62px;
         | 
| 276 | 
            +
                position: relative;
         | 
| 277 | 
            +
                background: #011736;
         | 
| 278 | 
            +
            }
         | 
| 279 | 
            +
             | 
| 280 | 
            +
            .featured-box-img-cover {
         | 
| 281 | 
            +
                object-fit: cover;
         | 
| 282 | 
            +
                width: 100%;
         | 
| 283 | 
            +
                height: 100%;
         | 
| 284 | 
            +
                max-height: 100%;
         | 
| 285 | 
            +
            }
         | 
| 286 | 
            +
             | 
| 287 | 
            +
            blockquote {
         | 
| 288 | 
            +
                border-left: 4px solid #00ab6b;
         | 
| 289 | 
            +
                padding: 0 20px;
         | 
| 290 | 
            +
                font-style: italic;
         | 
| 291 | 
            +
                color: rgba(255, 255, 255, 0.5);
         | 
| 292 | 
            +
            }
         | 
| 293 | 
            +
             | 
| 294 | 
            +
            .article-post p,
         | 
| 295 | 
            +
            .article-post blockquote {
         | 
| 296 | 
            +
                margin: 0 0 1.5rem 0;
         | 
| 297 | 
            +
            }
         | 
| 298 | 
            +
             | 
| 299 | 
            +
            ul.tags {
         | 
| 300 | 
            +
                list-style: none;
         | 
| 301 | 
            +
                padding-left: 0;
         | 
| 302 | 
            +
                margin: 0 0 3rem 0;
         | 
| 303 | 
            +
            }
         | 
| 304 | 
            +
             | 
| 305 | 
            +
            ul.tags li {
         | 
| 306 | 
            +
                display: inline-block;
         | 
| 307 | 
            +
                font-size: 0.9rem;
         | 
| 308 | 
            +
            }
         | 
| 309 | 
            +
             | 
| 310 | 
            +
            ul.tags li a {
         | 
| 311 | 
            +
                background: rgba(255, 255, 255, 0.05);
         | 
| 312 | 
            +
                color: rgba(255, 255, 255, .6);
         | 
| 313 | 
            +
                border-radius: 3px;
         | 
| 314 | 
            +
                padding: 5px 10px;
         | 
| 315 | 
            +
            }
         | 
| 316 | 
            +
             | 
| 317 | 
            +
            ul.tags li a:hover {
         | 
| 318 | 
            +
                background: rgba(255, 255, 255, .07);
         | 
| 319 | 
            +
                text-decoration: none;
         | 
| 320 | 
            +
            }
         | 
| 321 | 
            +
             | 
| 322 | 
            +
            /* Rouge (rb) CSS theme based on VS Code color theme */
         | 
| 323 | 
            +
            pre.highlight {
         | 
| 324 | 
            +
                display: block;
         | 
| 325 | 
            +
                padding: 1em;
         | 
| 326 | 
            +
                overflow-x: auto;
         | 
| 327 | 
            +
                background: #000000; /* VS Code default background */
         | 
| 328 | 
            +
                color: #d4d4d4; /* Default text color */
         | 
| 329 | 
            +
                font-family: Consolas, Monaco, 'Courier New', monospace;
         | 
| 330 | 
            +
                font-size: 14px;
         | 
| 331 | 
            +
                line-height: 1.5;
         | 
| 332 | 
            +
            }
         | 
| 333 | 
            +
             | 
| 334 | 
            +
            .highlight .c { /* Comment */
         | 
| 335 | 
            +
                color: #6a9955; /* Green for comments */
         | 
| 336 | 
            +
            }
         | 
| 337 | 
            +
             | 
| 338 | 
            +
            .highlight .err { /* Error */
         | 
| 339 | 
            +
                color: #f44747; /* Red for errors */
         | 
| 340 | 
            +
            }
         | 
| 341 | 
            +
             | 
| 342 | 
            +
            .highlight .k { /* Keyword */
         | 
| 343 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 344 | 
            +
            }
         | 
| 345 | 
            +
             | 
| 346 | 
            +
            .highlight .o { /* Operator */
         | 
| 347 | 
            +
                color: #d4d4d4; /* Default operator color */
         | 
| 348 | 
            +
            }
         | 
| 349 | 
            +
             | 
| 350 | 
            +
            .highlight .cm { /* Comment multiline */
         | 
| 351 | 
            +
                color: #6a9955; /* Green for comments */
         | 
| 352 | 
            +
            }
         | 
| 353 | 
            +
             | 
| 354 | 
            +
            .highlight .cp { /* Preprocessor */
         | 
| 355 | 
            +
                color: #569cd6; /* Blue for preprocessor directives */
         | 
| 356 | 
            +
            }
         | 
| 357 | 
            +
             | 
| 358 | 
            +
            .highlight .c1 { /* Comment single-line */
         | 
| 359 | 
            +
                color: #6a9955; /* Green for comments */
         | 
| 360 | 
            +
            }
         | 
| 361 | 
            +
             | 
| 362 | 
            +
            .highlight .cs { /* Comment special */
         | 
| 363 | 
            +
                color: #6a9955; /* Green for comments */
         | 
| 364 | 
            +
            }
         | 
| 365 | 
            +
             | 
| 366 | 
            +
            .highlight .gd { /* Deleted */
         | 
| 367 | 
            +
                color: #f44747; /* Red for deleted text */
         | 
| 368 | 
            +
            }
         | 
| 369 | 
            +
             | 
| 370 | 
            +
            .highlight .ge { /* Emphasis */
         | 
| 371 | 
            +
                font-style: italic;
         | 
| 372 | 
            +
            }
         | 
| 373 | 
            +
             | 
| 374 | 
            +
            .highlight .gr { /* Regex */
         | 
| 375 | 
            +
                color: #9cdcfe; /* Light blue for regex */
         | 
| 376 | 
            +
            }
         | 
| 377 | 
            +
             | 
| 378 | 
            +
            .highlight .gh { /* Heading */
         | 
| 379 | 
            +
                color: #dcdcaa; /* Yellow for headings */
         | 
| 380 | 
            +
            }
         | 
| 381 | 
            +
             | 
| 382 | 
            +
            .highlight .gi { /* Inserted */
         | 
| 383 | 
            +
                color: #b5cea8; /* Light green for inserted text */
         | 
| 384 | 
            +
            }
         | 
| 385 | 
            +
             | 
| 386 | 
            +
            .highlight .go { /* Output */
         | 
| 387 | 
            +
                color: #d4d4d4; /* Default text color */
         | 
| 388 | 
            +
            }
         | 
| 389 | 
            +
             | 
| 390 | 
            +
            .highlight .gp { /* Prompt */
         | 
| 391 | 
            +
                color: #569cd6; /* Blue for prompts */
         | 
| 392 | 
            +
            }
         | 
| 393 | 
            +
             | 
| 394 | 
            +
            .highlight .gs { /* Strong */
         | 
| 395 | 
            +
                font-weight: bold;
         | 
| 396 | 
            +
            }
         | 
| 397 | 
            +
             | 
| 398 | 
            +
            .highlight .gu { /* Underline */
         | 
| 399 | 
            +
                text-decoration: underline;
         | 
| 400 | 
            +
            }
         | 
| 401 | 
            +
             | 
| 402 | 
            +
            .highlight .kc { /* Keyword constant */
         | 
| 403 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 404 | 
            +
            }
         | 
| 405 | 
            +
             | 
| 406 | 
            +
            .highlight .kd { /* Keyword declaration */
         | 
| 407 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 408 | 
            +
            }
         | 
| 409 | 
            +
             | 
| 410 | 
            +
            .highlight .kn { /* Keyword namespace */
         | 
| 411 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 412 | 
            +
            }
         | 
| 413 | 
            +
             | 
| 414 | 
            +
            .highlight .kp { /* Keyword pseudo */
         | 
| 415 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 416 | 
            +
            }
         | 
| 417 | 
            +
             | 
| 418 | 
            +
            .highlight .kr { /* Keyword reserved */
         | 
| 419 | 
            +
                color: #c586c0; /* Purple for keywords */
         | 
| 420 | 
            +
            }
         | 
| 421 | 
            +
             | 
| 422 | 
            +
            .highlight .kt { /* Keyword type */
         | 
| 423 | 
            +
                color: #569cd6; /* Blue for types */
         | 
| 424 | 
            +
            }
         | 
| 425 | 
            +
             | 
| 426 | 
            +
            .highlight .m { /* Number */
         | 
| 427 | 
            +
                color: #b5cea8; /* Light green for numbers */
         | 
| 428 | 
            +
            }
         | 
| 429 | 
            +
             | 
| 430 | 
            +
            .highlight .s { /* String */
         | 
| 431 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 432 | 
            +
            }
         | 
| 433 | 
            +
             | 
| 434 | 
            +
            .highlight .na { /* Name attribute */
         | 
| 435 | 
            +
                color: #ce9178; /* Orange for attributes */
         | 
| 436 | 
            +
            }
         | 
| 437 | 
            +
             | 
| 438 | 
            +
            .highlight .nb { /* Name builtin */
         | 
| 439 | 
            +
                color: #569cd6; /* Blue for built-in names */
         | 
| 440 | 
            +
            }
         | 
| 441 | 
            +
             | 
| 442 | 
            +
            .highlight .nc { /* Name class */
         | 
| 443 | 
            +
                color: #dcdcaa; /* Yellow for class names */
         | 
| 444 | 
            +
            }
         | 
| 445 | 
            +
             | 
| 446 | 
            +
            .highlight .no { /* Name constant */
         | 
| 447 | 
            +
                color: #569cd6; /* Blue for constants */
         | 
| 448 | 
            +
            }
         | 
| 449 | 
            +
             | 
| 450 | 
            +
            .highlight .nd { /* Name decorator */
         | 
| 451 | 
            +
                color: #569cd6; /* Blue for decorators */
         | 
| 452 | 
            +
            }
         | 
| 453 | 
            +
             | 
| 454 | 
            +
            .highlight .ni { /* Name identifier */
         | 
| 455 | 
            +
                color: #d4d4d4; /* Default text color */
         | 
| 456 | 
            +
            }
         | 
| 457 | 
            +
             | 
| 458 | 
            +
            .highlight .ne { /* Name entity */
         | 
| 459 | 
            +
                color: #9cdcfe; /* Light blue for entities */
         | 
| 460 | 
            +
                cursor: help;
         | 
| 461 | 
            +
            }
         | 
| 462 | 
            +
             | 
| 463 | 
            +
            .highlight .nf { /* Name function */
         | 
| 464 | 
            +
                color: #dcdcaa; /* Yellow for functions */
         | 
| 465 | 
            +
            }
         | 
| 466 | 
            +
             | 
| 467 | 
            +
            .highlight .nl { /* Name label */
         | 
| 468 | 
            +
                color: #d4d4d4; /* Default text color */
         | 
| 469 | 
            +
            }
         | 
| 470 | 
            +
             | 
| 471 | 
            +
            .highlight .nn { /* Name namespace */
         | 
| 472 | 
            +
                color: #569cd6; /* Blue for namespaces */
         | 
| 473 | 
            +
            }
         | 
| 474 | 
            +
             | 
| 475 | 
            +
            .highlight .nt { /* Name tag */
         | 
| 476 | 
            +
                color: #569cd6; /* Blue for tags */
         | 
| 477 | 
            +
            }
         | 
| 478 | 
            +
             | 
| 479 | 
            +
            .highlight .nv { /* Name variable */
         | 
| 480 | 
            +
                color: #9cdcfe; /* Light blue for variables */
         | 
| 481 | 
            +
            }
         | 
| 482 | 
            +
             | 
| 483 | 
            +
            .highlight .ow { /* Operator word */
         | 
| 484 | 
            +
                color: #c586c0; /* Purple for operator words */
         | 
| 485 | 
            +
            }
         | 
| 486 | 
            +
             | 
| 487 | 
            +
            .highlight .w { /* Whitespace */
         | 
| 488 | 
            +
                color: #d4d4d4; /* Default text color */
         | 
| 489 | 
            +
            }
         | 
| 490 | 
            +
             | 
| 491 | 
            +
            .highlight .mf { /* Literal float */
         | 
| 492 | 
            +
                color: #b5cea8; /* Light green for floats */
         | 
| 493 | 
            +
            }
         | 
| 494 | 
            +
             | 
| 495 | 
            +
            .highlight .mh { /* Literal hex */
         | 
| 496 | 
            +
                color: #b5cea8; /* Light green for hex values */
         | 
| 497 | 
            +
            }
         | 
| 498 | 
            +
             | 
| 499 | 
            +
            .highlight .mi { /* Literal integer */
         | 
| 500 | 
            +
                color: #b5cea8; /* Light green for integers */
         | 
| 501 | 
            +
            }
         | 
| 502 | 
            +
             | 
| 503 | 
            +
            .highlight .mo { /* Literal octal */
         | 
| 504 | 
            +
                color: #b5cea8; /* Light green for octal values */
         | 
| 505 | 
            +
            }
         | 
| 506 | 
            +
             | 
| 507 | 
            +
            .highlight .sb { /* String backtick */
         | 
| 508 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 509 | 
            +
            }
         | 
| 510 | 
            +
             | 
| 511 | 
            +
            .highlight .sc { /* String char */
         | 
| 512 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 513 | 
            +
            }
         | 
| 514 | 
            +
             | 
| 515 | 
            +
            .highlight .sd { /* String doc */
         | 
| 516 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 517 | 
            +
            }
         | 
| 518 | 
            +
             | 
| 519 | 
            +
            .highlight .s2 { /* String double */
         | 
| 520 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 521 | 
            +
            }
         | 
| 522 | 
            +
             | 
| 523 | 
            +
            .highlight .se { /* String escape */
         | 
| 524 | 
            +
                color: #9cdcfe; /* Light blue for escapes */
         | 
| 525 | 
            +
            }
         | 
| 526 | 
            +
             | 
| 527 | 
            +
            .highlight .sh { /* String heredoc */
         | 
| 528 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 529 | 
            +
            }
         | 
| 530 | 
            +
             | 
| 531 | 
            +
            .highlight .si { /* String interpolated */
         | 
| 532 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 533 | 
            +
            }
         | 
| 534 | 
            +
             | 
| 535 | 
            +
            .highlight .sx { /* String other */
         | 
| 536 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 537 | 
            +
            }
         | 
| 538 | 
            +
             | 
| 539 | 
            +
            .highlight .sr { /* String regex */
         | 
| 540 | 
            +
                color: #9cdcfe; /* Light blue for regex */
         | 
| 541 | 
            +
            }
         | 
| 542 | 
            +
             | 
| 543 | 
            +
            .highlight .s1 { /* String single */
         | 
| 544 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 545 | 
            +
            }
         | 
| 546 | 
            +
             | 
| 547 | 
            +
            .highlight .ss { /* String symbol */
         | 
| 548 | 
            +
                color: #ce9178; /* Orange for strings */
         | 
| 549 | 
            +
            }
         | 
| 550 | 
            +
             | 
| 551 | 
            +
            .highlight .bp { /* Builtin pseudo */
         | 
| 552 | 
            +
                color: #569cd6; /* Blue for built-in pseudo elements */
         | 
| 553 | 
            +
            }
         | 
| 554 | 
            +
             | 
| 555 | 
            +
            .highlight .vc { /* Variable constant */
         | 
| 556 | 
            +
                color: #9cdcfe; /* Light blue for constants */
         | 
| 557 | 
            +
            }
         | 
| 558 | 
            +
             | 
| 559 | 
            +
            .highlight .vg { /* Variable global */
         | 
| 560 | 
            +
                color: #9cdcfe; /* Light blue for global variables */
         | 
| 561 | 
            +
            }
         | 
| 562 | 
            +
             | 
| 563 | 
            +
            .highlight .vi { /* Variable instance */
         | 
| 564 | 
            +
                color: #9cdcfe; /* Light blue for instance variables */
         | 
| 565 | 
            +
            }
         | 
| 566 | 
            +
             | 
| 567 | 
            +
            .highlight .il { /* Literal integer long */
         | 
| 568 | 
            +
                color: #b5cea8; /* Light green for long integers */
         | 
| 569 | 
            +
            }
         | 
| 570 | 
            +
             | 
| 571 | 
            +
            td.rouge-code { width: 100%;}
         | 
| 572 | 
            +
            pre.lineno { color: #ffffff;}
         | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
    
        data/assets/img/logo.png
    ADDED
    
    | Binary file | 
| Binary file | 
| Binary file |