From fee80e29f0f78e1be63723bf6fb7085b3a8ab28a Mon Sep 17 00:00:00 2001 From: Otto Zaiser <zaisero@nic.ar> Date: Fri, 12 Oct 2018 12:52:37 -0300 Subject: [PATCH] Cambios de variables --- _src/scss/general/_header.scss | 2 +- _src/scss/general/_top.scss | 48 ++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 _src/scss/general/_top.scss diff --git a/_src/scss/general/_header.scss b/_src/scss/general/_header.scss index 9eef224..06c312d 100644 --- a/_src/scss/general/_header.scss +++ b/_src/scss/general/_header.scss @@ -142,7 +142,7 @@ white-space: normal; font-size: 1.125em; background-color: #fff; - color: #0094d4; + color: $primaryColor; margin-left: 0px; } .navbar-nav li ul.dropdown-menu li a:hover { diff --git a/_src/scss/general/_top.scss b/_src/scss/general/_top.scss new file mode 100644 index 0000000..0ccda7f --- /dev/null +++ b/_src/scss/general/_top.scss @@ -0,0 +1,48 @@ +.top{ + position: absolute; + top: 8px; + z-index: 1031; + width: 100%; + margin-bottom: 40px; + nav > ul > li { + float: right !important; + + a{ + color: $blanco; + font-size: 0.75em; + &:hover, &:focus{ + background: transparent; + text-decoration: underline; + } + } + } + + nav > ul > li:first-child>a { + color: $primaryColor; + background-color: transparent; + border-color: $primaryColor; + border-width: 2px; + border-style: solid; + border-image: initial; + padding: 5px 8px; + border-radius: 20px; + margin-top: 2px; + transition: all 0.2s ease; + &:hover, &:focus{ + color: $blanco; + background-color: $primaryColor; + text-decoration: none; + } + @media (min-width: 768px) { + color: $blanco; + background-color: transparent; + border-color: $blanco; + + &:hover, &:focus{ + color: $primaryColor; + background-color: $blanco; + } + + } + } +} \ No newline at end of file -- GitLab