diff options
author | Jesús <heckyel@hyperbola.info> | 2020-05-24 18:07:10 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-05-24 18:07:10 -0500 |
commit | 4235befd675ae72450872e2d2300bdab7817930a (patch) | |
tree | 44eb5d65bdd444fe118b9ca9b917779d5ab3eaac /src/scss/custom/_main.scss | |
parent | 38d66b141d03140211ffacf54a4975f0d3cfb56e (diff) | |
download | cl-theme-4235befd675ae72450872e2d2300bdab7817930a.tar.lz cl-theme-4235befd675ae72450872e2d2300bdab7817930a.tar.xz cl-theme-4235befd675ae72450872e2d2300bdab7817930a.zip |
Change theme color to blue
Diffstat (limited to 'src/scss/custom/_main.scss')
-rw-r--r-- | src/scss/custom/_main.scss | 30 |
1 files changed, 11 insertions, 19 deletions
diff --git a/src/scss/custom/_main.scss b/src/scss/custom/_main.scss index 9a7b866..7b39b2a 100644 --- a/src/scss/custom/_main.scss +++ b/src/scss/custom/_main.scss @@ -1,12 +1,12 @@ /* main content styling */ .main-content { - background-color: #363636; + background-color: $fondo; padding: 1rem 1.5rem; } /* card changes */ .card { - background-color: #161c1c; + background-color: $card; .card-content-footer { color: #7a7a7a; } @@ -17,15 +17,21 @@ padding-top: 2px; } -.card-content-header, .comments-header { - background-color: #dd7325; +.card-content-header, +.comments-header { + background-color: $barra; padding: 10px; box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1); } +.card-content-header:hover { + background-color: $hbarra; +} + .card-content-header { .title, a { color: whitesmoke; + text-shadow: 0px 1px 2px #000; } } @@ -35,7 +41,7 @@ .card-content-text { padding-bottom: 30px; - border-bottom: 1px solid #dd7325; + border-bottom: 1px solid $barra; p { color: whitesmoke; font-size: 1em; @@ -78,14 +84,6 @@ p { display: contents; } - &:before { - opacity: 0.5; - content: open-quote; - font-size: 4rem; - line-height: .1em; - margin-right: .25em; - vertical-align: -0.4em; - } } * { @@ -107,9 +105,3 @@ legend { margin-bottom: 0rem; } } - -.hidden-more { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; -} |