From 0369b9048beae168e5cfe541f1718222cc67847e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 26 May 2020 13:03:13 -0500 Subject: [PATCH] Update styles to version 2.0.1 --- cl-theme/static/css/style.css | 76 ++++++++++++++++++++++++++++++++++- 1 file changed, 75 insertions(+), 1 deletion(-) diff --git a/cl-theme/static/css/style.css b/cl-theme/static/css/style.css index 0278554..3d823a8 100644 --- a/cl-theme/static/css/style.css +++ b/cl-theme/static/css/style.css @@ -2,7 +2,7 @@ * bulma css framework (github.com/jgthms | bulma.io) * Author: jeremy thomas * Author: jesus e. - * Version: 2.0.0 + * Version: 2.0.1 * Licensed under MIT (https://github.com/jgthms/bulma/blob/master/LICENSE) */ /* basic formatting changes (mostly to cater for darker colours) */ @@ -23,6 +23,25 @@ body, input, textarea, .button { /* Colores */ /* main */ +* { + scrollbar-width: thin; + scrollbar-color: #3273dc #9E9E9E; +} + +*::-webkit-scrollbar { + width: 12px; +} + +*::-webkit-scrollbar-track { + background: #9E9E9E; +} + +*::-webkit-scrollbar-thumb { + background-color: #3273dc; + border-radius: 20px; + border: 3px solid #9E9E9E; +} + /* ------------- Menu Mobile sin JS ---------------- */ /* input hidden */ #navbar-toggle-cbox { @@ -137,6 +156,61 @@ video { } /* Colors Code */ +.highlighttable { + display: block; + overflow-x: auto; +} + +.highlighttable pre { + background-color: #000; + color: #fff; + margin: 0px; + padding: 0px; + border: 0px; + background-size: 0px; + text-align: left; + direction: ltr; + tab-size: 2; +} + +.highlighttable .linenodiv { + box-shadow: inset -0.05rem 0 grey; + background-color: #000; + padding-right: 1px; +} + +.highlighttable .linenodiv pre { + border-left: 10px solid #3273dc; + border-top: 1px solid #3273dc; + border-bottom: 1px solid #3273dc; + padding-right: 10px; + padding-left: 5px; + font-size: 75%; +} + +.highlighttable .highlight pre { + font-size: 75%; + border-top: 1px solid #3273dc; + border-bottom: 1px solid #3273dc; + border-right: 1px solid #3273dc; +} + +.highlighttable .code { + padding: 0 0 0 0; + margin: 0px; + width: 100%; +} + +.highlighttable .code pre { + padding-left: 10px; + padding-right: 20px; +} + +.highlighttable .linenos { + padding: 0 0 0 0; + margin: 0px; +} + .highlight { color: #cccccc; }