summaryrefslogtreecommitdiff
path: root/web-ui/src/common/header/header.scss
diff options
context:
space:
mode:
authorTayane Fernandes <tayane.rmf@gmail.com>2017-02-09 11:22:09 -0200
committerTayane Fernandes <tayane.rmf@gmail.com>2017-02-09 11:22:09 -0200
commitdd4f8569848b4dbd688c07c03b17a898ed6df25d (patch)
treee40ea5596c9c204c4c12337d9be3be7e88e8cddf /web-ui/src/common/header/header.scss
parenta76b524c147c79fefa7943230a33e7904af3c070 (diff)
[#922] Add logo and icons to the header
with @anikarni
Diffstat (limited to 'web-ui/src/common/header/header.scss')
-rw-r--r--web-ui/src/common/header/header.scss36
1 files changed, 34 insertions, 2 deletions
diff --git a/web-ui/src/common/header/header.scss b/web-ui/src/common/header/header.scss
index d7472677..bd79280d 100644
--- a/web-ui/src/common/header/header.scss
+++ b/web-ui/src/common/header/header.scss
@@ -23,7 +23,7 @@
background: $white;
box-shadow: 0 2px 3px 0 $shadow;
- padding: 5px 0;
+ padding: 7px 0;
}
.header-content {
@@ -42,13 +42,45 @@
position: absolute;
right: 6%;
+ span {
+ display: none;
+ }
+
.fa {
font-size: 1.3em;
+ margin-left: 0.4em;
color: $medium_light_grey;
}
}
-@media only screen and (min-width : 500px) {
+@media only screen and (min-width : 960px) {
+ .header-content {
+ flex-basis: 64%;
+ max-width: 820px;
+ justify-content: space-between;
+ }
+
+ .header-icons {
+ position: relative;
+ right: 0;
+ a {
+ display: flex;
+ align-items: center;
+ }
+
+ span {
+ display: inline;
+ color: $medium_light_grey;
+ font-style: normal;
+ font-size: 0.7em;
+ padding-bottom: 0.1em;
+ }
+
+ .fa {
+ font-size: 1em;
+ margin-right: 0;
+ }
+ }
}