-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from eea/develop
Develop
- Loading branch information
Showing
22 changed files
with
407 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.eea.banner { | ||
background: @bannerBackgroundColor; | ||
} | ||
|
||
.eea.banner .gradient { | ||
background: @bannerBackgroundGradient !important; | ||
} | ||
|
||
.eea.banner > .image { | ||
background: @bannerBackgroundImage; | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.call-to-action > .ui.button { | ||
background-color: transparent !important; | ||
border-radius: 6px; | ||
box-shadow: 0px 0px 0px 1px @linkColorAB inset; | ||
color: @linkColorAB; | ||
} | ||
|
||
.call-to-action > .ui.button:hover { | ||
background-color: @linkColorAB !important; | ||
color: #fff; | ||
} | ||
|
||
.call-to-action > .ui.button.inverted.default { | ||
background-color: @linkColorAB !important; | ||
box-shadow: none !important; | ||
color: #fff; | ||
} | ||
|
||
.call-to-action > .ui.button.inverted.default:hover { | ||
background-color: @linkColorAB !important; | ||
color: #fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// carousel image | ||
.slick-slide .ui.cards > .card:not(.rounded), | ||
.slick-slide .ui.card:not(.rounded) { | ||
.image { | ||
position: relative; | ||
height: @cardImageHeight !important; | ||
|
||
img { | ||
height: @imageHeight !important; | ||
border-radius: 10px; | ||
} | ||
} | ||
} | ||
|
||
// carousel arrows | ||
.cards-carousel .next-arrow { | ||
top: 40% !important; | ||
right: -5rem !important; | ||
} | ||
|
||
.cards-carousel .prev-arrow { | ||
top: 40% !important; | ||
left: -5rem !important; | ||
} | ||
|
||
// carousel card | ||
.card .meta .date { | ||
margin-right: auto !important; | ||
margin-left: 0 !important; | ||
} | ||
|
||
// carousel dots | ||
.cards-carousel .slick-dots li.slick-active button:before { | ||
background-color: @linkColorAB !important; | ||
} | ||
|
||
.cards-carousel .slick-dots li button:before { | ||
width: 13px !important; | ||
height: 13px !important; | ||
border-color: @linkColorAB !important; | ||
} | ||
|
||
.cards-carousel .slick-track { | ||
margin: 0 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.facets .ui.basic.segment.facet { | ||
border-top: 1.3px solid #bebebe; | ||
} | ||
|
||
.checkbox-facet .entries .entry .ui.checkbox label:before { | ||
border-radius: 5px; | ||
} | ||
|
||
.checkbox-facet .entries .entry .ui.checkbox.checked label:before { | ||
border-radius: 5px; | ||
} | ||
|
||
.checkbox-facet | ||
.entries | ||
.entry | ||
.ui.checkbox:not(.toggle) | ||
input:checked | ||
~ label:after { | ||
background-color: #658f9996; | ||
} | ||
|
||
.checkbox-facet .entries .entry .ui.checkbox input:checked ~ label:before { | ||
border: 1px solid #b9b9b9; | ||
} | ||
|
||
.checkbox-facet .entries .entry .ui.checkbox.checked input ~ label:after, | ||
.ui.checkbox input:checked .box:after { | ||
border-radius: 5px; | ||
content: ''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#page-contents a { | ||
color: @secondaryColor; | ||
|
||
&:hover { | ||
color: @secondaryColor; | ||
} | ||
|
||
&:visited { | ||
color: @secondaryColor; | ||
} | ||
|
||
&:active { | ||
color: @secondaryColor; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#content a { | ||
color: @secondaryColor; | ||
&:hover { | ||
color: @secondaryColor; | ||
} | ||
|
||
&:visited { | ||
color: @secondaryColor; | ||
} | ||
|
||
&:active { | ||
color: @secondaryColor; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#icons > .column-grid > .column { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
#icons > .grid > .column > div > .ui > .item > .icon { | ||
display: flex; | ||
min-width: 65px !important; | ||
min-height: 65px !important; | ||
align-items: center; | ||
justify-content: center; | ||
background-color: @contentBoxTertiaryBackground; | ||
border-radius: 50px; | ||
} | ||
|
||
.description { | ||
width: fit-content; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.cardsGallery { | ||
.ui.four.cards > .card img { | ||
position: relative; | ||
} | ||
|
||
.ui.four.cards > .card a.image:before { | ||
position: absolute; | ||
z-index: 1; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
display: block; | ||
background: #608c95; | ||
content: ''; | ||
opacity: 0 !important; | ||
transition: opacity 0.2s; | ||
} | ||
|
||
.ui.four.cards > .card:hover { | ||
a.image:before { | ||
opacity: 0.4 !important; | ||
} | ||
} | ||
} | ||
|
||
.slick-slide .ui.cards > .card:not(.rounded), | ||
.slick-slide .ui.card:not(.rounded) { | ||
.image:before { | ||
position: absolute; | ||
z-index: 1; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
display: block; | ||
background: #608c95; | ||
border-radius: 10px; | ||
content: ''; | ||
opacity: 0 !important; | ||
transition: opacity 0.2s; | ||
} | ||
} | ||
|
||
.slick-slide .ui.cards > .card:not(.rounded):hover, | ||
.slick-slide .ui.card:not(.rounded):hover { | ||
.image:before { | ||
opacity: 0.4 !important; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
p.has--clear--both:empty { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
} | ||
|
||
.cardsGallery a.ui.button { | ||
font-size: 0; | ||
visibility: hidden; | ||
} | ||
|
||
.cardsGallery a.ui.button:before { | ||
display: block; | ||
width: 40px; | ||
height: 40px; | ||
padding: 5px; | ||
border: 2px solid #f26119; | ||
background-image: url('./ahead.svg'); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: 30px; | ||
border-radius: 50%; | ||
color: #f26119; | ||
content: ''; | ||
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; | ||
visibility: visible; | ||
} | ||
|
||
.cardsGallery a.ui.button:hover:before { | ||
background-color: @linkColorAB; | ||
background-image: url('./ahead-white.svg'); | ||
color: #fff; | ||
} |
Oops, something went wrong.