update cl-theme to 2.0.0

This commit is contained in:
Jesús 2020-05-24 18:26:54 -05:00
parent b51a8756e1
commit 68fef6633e
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
9 changed files with 1854 additions and 437 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,70 +0,0 @@
/* cyrillic-ext */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-cyrillic-ext.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-cyrillic.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-greek-ext.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-greek.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-vietnamese.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-latin-ext.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed'),
local('RobotoCondensed-Regular'),
url(../fonts/roboto/roboto-latin.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

View File

@ -2,7 +2,7 @@
* bulma css framework (github.com/jgthms | bulma.io) * bulma css framework (github.com/jgthms | bulma.io)
* Author: jeremy thomas * Author: jeremy thomas
* Author: jesus e. * Author: jesus e.
* Version: 1.0.5a * Version: 2.0.0
* Licensed under MIT (https://github.com/jgthms/bulma/blob/master/LICENSE) * Licensed under MIT (https://github.com/jgthms/bulma/blob/master/LICENSE)
*/ */
/* basic formatting changes (mostly to cater for darker colours) */ /* basic formatting changes (mostly to cater for darker colours) */
@ -22,6 +22,7 @@ body, input, textarea, .button {
} }
/* Colores */ /* Colores */
/* main */
/* ------------- Menu Mobile sin JS ---------------- */ /* ------------- Menu Mobile sin JS ---------------- */
/* input hidden */ /* input hidden */
#navbar-toggle-cbox { #navbar-toggle-cbox {
@ -39,7 +40,7 @@ label[for=navbar-toggle-cbox] {
/*- ----------- End Menu Mobile sin JS ------------- */ /*- ----------- End Menu Mobile sin JS ------------- */
/* navigation */ /* navigation */
.navbar { .navbar {
background-color: #0c0f0f; background-color: #0a0a0a;
} }
.navbar a { .navbar a {
@ -72,7 +73,7 @@ label[for=navbar-toggle-cbox] {
} }
.navbar.is-social-center > a.navbar-item:hover { .navbar.is-social-center > a.navbar-item:hover {
color: #dd7325; color: #209cee;
} }
/* main-header */ /* main-header */
@ -85,11 +86,11 @@ label[for=navbar-toggle-cbox] {
} }
.main-header .subtitle { .main-header .subtitle {
color: #dd7325; color: #fff;
} }
.main-header .hero { .main-header .hero {
background-color: #161c1c; background-color: #1a1a1a;
} }
code { code {
@ -103,7 +104,14 @@ li {
pre { pre {
background-color: #000; background-color: #000;
color: #78dcfa; color: #f9f9f9;
margin: 10px 0;
border: 1px solid #3273dc;
border-left: 10px solid #3273dc;
background-size: 1px 40px;
text-align: left;
direction: ltr;
tab-size: 2;
} }
strong { strong {
@ -130,7 +138,6 @@ video {
/* Colors Code */ /* Colors Code */
.highlight { .highlight {
background: #000000;
color: #cccccc; color: #cccccc;
} }
@ -337,7 +344,7 @@ video {
} }
.soumaicon:hover svg { .soumaicon:hover svg {
fill: #dd7325; fill: #3273dc;
} }
/* main content styling */ /* main content styling */
@ -348,7 +355,7 @@ video {
/* card changes */ /* card changes */
.card { .card {
background-color: #161c1c; background-color: #1a1a1a;
} }
.card .card-content-footer { .card .card-content-footer {
@ -360,14 +367,20 @@ video {
padding-top: 2px; padding-top: 2px;
} }
.card-content-header, .comments-header { .card-content-header,
background-color: #dd7325; .comments-header {
background-color: #3273dc;
padding: 10px; padding: 10px;
box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1); box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
} }
.card-content-header:hover {
background-color: #209cee;
}
.card-content-header .title, .card-content-header a { .card-content-header .title, .card-content-header a {
color: whitesmoke; color: whitesmoke;
text-shadow: 0px 1px 2px #000;
} }
.card-inner-wrapper { .card-inner-wrapper {
@ -376,7 +389,7 @@ video {
.card-content-text { .card-content-text {
padding-bottom: 30px; padding-bottom: 30px;
border-bottom: 1px solid #dd7325; border-bottom: 1px solid #3273dc;
} }
.card-content-text p { .card-content-text p {
@ -444,14 +457,8 @@ legend {
margin-bottom: 0rem; margin-bottom: 0rem;
} }
.hidden-more {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
a { a {
color: #0099e5; color: #3273dc;
} }
a:hover { a:hover {
@ -460,24 +467,24 @@ a:hover {
} }
a.navbar-item.is-tab.is-active { a.navbar-item.is-tab.is-active {
border-bottom-color: #dd7325; border-bottom-color: #209cee;
border-width: 2px; border-width: 2px;
color: whitesmoke; color: whitesmoke;
} }
a.navbar-item.is-tab:hover { a.navbar-item.is-tab:hover {
border-bottom-color: #dd7325; border-bottom-color: #209cee;
border-width: 2px; border-width: 2px;
color: #dd7325; color: #209cee;
} }
a.navbar-item:hover { a.navbar-item:hover {
color: #dd7325; color: #209cee;
background-color: transparent; background-color: transparent;
} }
a.pagination-previous.disabled, a.pagination-next.disabled { a.pagination-previous.disabled, a.pagination-next.disabled {
background: #0c0f0f; background: #000;
color: white; color: white;
cursor: not-allowed; cursor: not-allowed;
border-color: #dbdbdb; border-color: #dbdbdb;
@ -488,13 +495,13 @@ a.pagination-previous.disabled, a.pagination-next.disabled {
h2 > a:hover { h2 > a:hover {
color: white; color: white;
text-shadow: 1px 2px 0px #161C1C; text-shadow: 0px 1px 2px #000;
} }
.is-button-grey, .pagination-link { .is-button-grey, .pagination-link {
background-color: #7a7a7a; background-color: #7a7a7a;
border-color: transparent; border-color: transparent;
color: rgba(0, 0, 0, 0.7); color: #1b1b1b;
} }
.button { .button {
@ -502,7 +509,7 @@ h2 > a:hover {
} }
.button:hover, .pagination .is-current, .pagination-link:hover { .button:hover, .pagination .is-current, .pagination-link:hover {
background-color: #dd7325; background-color: #3273dc;
border-color: transparent; border-color: transparent;
color: whitesmoke; color: whitesmoke;
} }
@ -517,24 +524,35 @@ h2 > a:hover {
} }
.footer { .footer {
background-color: #0c0f0f; background-color: #0a0a0a;
color: whitesmoke; color: whitesmoke;
} }
.footer a { .footer a {
color: #dd7325; color: #3273dc;
}
.footer a:hover {
color: #ffc20e;
} }
.footer-top-shadow { .footer-top-shadow {
box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1); box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1);
} }
.hidden-more {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: #fff;
}
.warning-sp { .warning-sp {
display: none; display: none;
} }
.comments-content { .comments-content {
background-color: #161c1c; background-color: #1a1a1a;
padding-bottom: 10px; padding-bottom: 10px;
margin-top: 20px; margin-top: 20px;
} }
@ -551,21 +569,70 @@ h2 > a:hover {
color: whitesmoke; color: whitesmoke;
} }
.comments-wrapper p > a {
color: #f0e68c;
}
.comments-wrapper a {
color: #f0e68c;
}
.comments-wrapper a:hover {
color: #ffc20e;
}
.comments-wrapper small { .comments-wrapper small {
color: #7a7a7a; color: #7a7a7a;
} }
.comments-wrapper strong { .comments-wrapper strong > a {
color: whitesmoke; color: #00d1b2;
font-weight: 100; font-weight: 100;
} }
.comments-wrapper a { .comments-wrapper time > small > a {
color: #dd7325; color: grey;
} }
.comments-wrapper .media .media, .comments-wrapper .media + .media { .comments-wrapper .media .media, .comments-wrapper .media + .media {
border-top: 1px solid #dd7325; border-top: 1px solid #209cee;
}
/* table of contents */
.toc {
font-size: 0.85rem;
}
.toctitle {
display: block;
text-align: center;
font-size: 1rem;
color: white;
text-decoration: underline;
}
nav.toc {
background-color: #0c0f0f;
border: 1px solid #3273dc;
margin: 1rem 0px;
}
div.toc {
margin: 1rem;
}
a.headerlink {
color: grey;
padding-left: .5em;
visibility: hidden;
}
h1:hover > a.headerlink, h2:hover > a.headerlink,
h3:hover > a.headerlink, h4:hover > a.headerlink,
h5:hover > a.headerlink, h6:hover > a.headerlink,
dt:hover > a.headerlink {
text-decoration: none;
visibility: visible;
} }
@media screen and (max-width: 1087px) { @media screen and (max-width: 1087px) {
@ -596,43 +663,6 @@ h2 > a:hover {
} }
.is-active-play { .is-active-play {
color: #dd7325; color: #3273dc;
background-color: #dd7325; background-color: #3273dc;
}
/* table of contents */
.toc {
font-size: 0.85rem;
}
.toctitle {
display: block;
text-align: center;
font-size: 1rem;
color: white;
text-decoration: underline;
}
nav.toc {
background-color: #0c0f0f;
border: 1px solid #dd7325;
margin: 1rem 0px;
}
div.toc {
margin: 1rem;
}
a.headerlink {
color: grey;
padding-left: .5em;
visibility: hidden;
}
h1:hover > a.headerlink, h2:hover > a.headerlink,
h3:hover > a.headerlink, h4:hover > a.headerlink,
h5:hover > a.headerlink, h6:hover > a.headerlink,
dt:hover > a.headerlink {
text-decoration: none;
visibility: visible;
} }

View File

@ -45,7 +45,7 @@
<!-- stylesheets --> <!-- stylesheets -->
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/bulma.css?v=0.7.4"/> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/bulma.css?v=0.7.4"/>
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/hover.css"/> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/hover.css"/>
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/style.css?v=1.0.5a"/> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/style.css?v=2.0.0"/>
<!-- favicon --> <!-- favicon -->
<link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-16x16.png" sizes="16x16"/> <link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-16x16.png" sizes="16x16"/>
<link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-32x32.png" sizes="32x32"/> <link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-32x32.png" sizes="32x32"/>