11 changed files with 243 additions and 3 deletions
@ -0,0 +1,18 @@ |
|||
.esh-header { |
|||
background-color: #00A69C; |
|||
height: 4rem; |
|||
} |
|||
|
|||
.esh-header-back { |
|||
color: rgba(255, 255, 255, 0.5); |
|||
line-height: 4rem; |
|||
text-decoration: none; |
|||
text-transform: uppercase; |
|||
transition: color 0.35s; |
|||
} |
|||
|
|||
.esh-header-back:hover { |
|||
color: #FFFFFF; |
|||
transition: color 0.35s; |
|||
} |
|||
|
|||
@ -0,0 +1 @@ |
|||
.esh-header{background-color:#00a69c;height:4rem;}.esh-header-back{color:rgba(255,255,255,.5);line-height:4rem;text-decoration:none;text-transform:uppercase;transition:color .35s;}.esh-header-back:hover{color:#fff;transition:color .35s;} |
|||
@ -0,0 +1,21 @@ |
|||
@import '../../../variables'; |
|||
|
|||
.esh-header { |
|||
$header-height: 4rem; |
|||
|
|||
background-color: $color-brand; |
|||
height: $header-height; |
|||
|
|||
&-back { |
|||
color: rgba($color-foreground-brighter, .5); |
|||
line-height: $header-height; |
|||
text-decoration: none; |
|||
text-transform: uppercase; |
|||
transition: color $animation-speed-default; |
|||
|
|||
&:hover { |
|||
color: $color-foreground-brighter; |
|||
transition: color $animation-speed-default; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,57 @@ |
|||
.esh-identity { |
|||
line-height: 3rem; |
|||
position: relative; |
|||
text-align: right; |
|||
} |
|||
|
|||
.esh-identity-section { |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.esh-identity-name { |
|||
display: inline-block; |
|||
} |
|||
|
|||
.esh-identity-name--upper { |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
@media screen and (max-width: 768px) { |
|||
.esh-identity-name { |
|||
font-size: 0.85rem; |
|||
} |
|||
} |
|||
|
|||
.esh-identity-image { |
|||
display: inline-block; |
|||
} |
|||
|
|||
.esh-identity-drop { |
|||
background: #FFFFFF; |
|||
height: 10px; |
|||
width: 10rem; |
|||
overflow: hidden; |
|||
padding: .5rem; |
|||
position: absolute; |
|||
right: 0; |
|||
top: 2.5rem; |
|||
transition: height 0.35s; |
|||
} |
|||
|
|||
.esh-identity:hover .esh-identity-drop { |
|||
border: 1px solid #EEEEEE; |
|||
height: 10rem; |
|||
transition: height 0.35s; |
|||
} |
|||
|
|||
.esh-identity-item { |
|||
cursor: pointer; |
|||
transition: color 0.35s; |
|||
} |
|||
|
|||
.esh-identity-item:hover { |
|||
color: #75b918; |
|||
transition: color 0.35s; |
|||
} |
|||
|
|||
@ -0,0 +1 @@ |
|||
.esh-identity{line-height:3rem;position:relative;text-align:right;}.esh-identity-section{display:inline-block;width:100%;}.esh-identity-name{display:inline-block;}.esh-identity-name--upper{text-transform:uppercase;}@media screen and (max-width:768px){.esh-identity-name{font-size:.85rem;}}.esh-identity-image{display:inline-block;}.esh-identity-drop{background:#fff;height:10px;width:10rem;overflow:hidden;padding:.5rem;position:absolute;right:0;top:2.5rem;transition:height .35s;}.esh-identity:hover .esh-identity-drop{border:1px solid #eee;height:10rem;transition:height .35s;}.esh-identity-item{cursor:pointer;transition:color .35s;}.esh-identity-item:hover{color:#75b918;transition:color .35s;} |
|||
@ -0,0 +1,56 @@ |
|||
@import '../../../variables'; |
|||
|
|||
.esh-identity { |
|||
line-height: 3rem; |
|||
position: relative; |
|||
text-align: right; |
|||
|
|||
&-section { |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
&-name { |
|||
display: inline-block; |
|||
|
|||
&--upper { |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
@media screen and (max-width: $media-screen-s) { |
|||
font-size: $font-size-s; |
|||
} |
|||
} |
|||
|
|||
&-image { |
|||
display: inline-block; |
|||
} |
|||
|
|||
&-drop { |
|||
background: $color-background-brighter; |
|||
height: 10px; |
|||
width: 10rem; |
|||
overflow: hidden; |
|||
padding: .5rem; |
|||
position: absolute; |
|||
right: 0; |
|||
top: 2.5rem; |
|||
transition: height $animation-speed-default; |
|||
} |
|||
|
|||
&:hover &-drop { |
|||
border: $border-light solid $color-foreground-bright; |
|||
height: 10rem; |
|||
transition: height $animation-speed-default; |
|||
} |
|||
|
|||
&-item { |
|||
cursor: pointer; |
|||
transition: color $animation-speed-default; |
|||
|
|||
&:hover { |
|||
color: $color-secondary-dark; |
|||
transition: color $animation-speed-default; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,35 @@ |
|||
.esh-pager-wrapper { |
|||
padding-top: 1rem; |
|||
text-align: center; |
|||
} |
|||
|
|||
.esh-pager-item { |
|||
margin: 0 5vw; |
|||
} |
|||
|
|||
.esh-pager-item.is-disabled { |
|||
opacity: 0; |
|||
pointer-events: none; |
|||
} |
|||
|
|||
.esh-pager-item--navigable { |
|||
cursor: pointer; |
|||
display: inline-block; |
|||
} |
|||
|
|||
.esh-pager-item--navigable:hover { |
|||
color: #83D01B; |
|||
} |
|||
|
|||
@media screen and (max-width: 1280px) { |
|||
.esh-pager-item { |
|||
font-size: 0.85rem; |
|||
} |
|||
} |
|||
|
|||
@media screen and (max-width: 1024px) { |
|||
.esh-pager-item { |
|||
margin: 0 2.5vw; |
|||
} |
|||
} |
|||
|
|||
@ -0,0 +1 @@ |
|||
.esh-pager-wrapper{padding-top:1rem;text-align:center;}.esh-pager-item{margin:0 5vw;}.esh-pager-item.is-disabled{opacity:0;pointer-events:none;}.esh-pager-item--navigable{cursor:pointer;display:inline-block;}.esh-pager-item--navigable:hover{color:#83d01b;}@media screen and (max-width:1280px){.esh-pager-item{font-size:.85rem;}}@media screen and (max-width:1024px){.esh-pager-item{margin:0 2.5vw;}} |
|||
@ -0,0 +1,36 @@ |
|||
@import '../../../variables'; |
|||
|
|||
.esh-pager { |
|||
|
|||
&-wrapper { |
|||
padding-top: 1rem; |
|||
text-align: center; |
|||
} |
|||
|
|||
&-item { |
|||
$margin: 5vw; |
|||
margin: 0 $margin; |
|||
|
|||
&.is-disabled { |
|||
opacity: 0; |
|||
pointer-events: none; |
|||
} |
|||
|
|||
&--navigable { |
|||
cursor: pointer; |
|||
display: inline-block; |
|||
|
|||
&:hover { |
|||
color: $color-secondary; |
|||
} |
|||
} |
|||
|
|||
@media screen and (max-width: $media-screen-l) { |
|||
font-size: $font-size-s; |
|||
} |
|||
|
|||
@media screen and (max-width: $media-screen-m) { |
|||
margin: 0 $margin / 2; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue