-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,057 additions
and
0 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
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,90 @@ | ||
/* | ||
WET-BOEW | ||
@title: Theme template | ||
@desc: Styles specific to the Theme template for GCWeb | ||
*/ | ||
|
||
.page-type-theme { | ||
#wb-bc { | ||
li:first-child a { | ||
border-left: solid #26374a 5px; | ||
padding-left: 8px; | ||
} | ||
|
||
.breadcrumb { | ||
margin-bottom: 15px; | ||
} | ||
} | ||
|
||
#gridContainer { | ||
> nav { | ||
#menuTrigger { | ||
border-radius: 0; | ||
display: block; | ||
margin-bottom: 1em; | ||
margin-left: -15px; | ||
text-align: left; | ||
width: calc(100% + 30px); | ||
|
||
.glyphicon { | ||
margin-left: 10px; | ||
} | ||
|
||
&.expanded .glyphicon { | ||
transform: rotate(180deg) translateY(2px); | ||
} | ||
|
||
// Les items du menu sont affichés par défaut en mode basic HTML, donc il n'est pas nécessaire d'afficher le bouton menu car il ne sera pas fonctionnel | ||
.wb-disable & { | ||
display: none; | ||
} | ||
} | ||
|
||
li { | ||
a { | ||
color: $link-color; | ||
display: block; | ||
font-size: 16px; | ||
line-height: 1.65em; | ||
padding: 10px 14px; | ||
text-decoration: none; | ||
|
||
&:hover { | ||
background-color: #f5f5f5; | ||
color: $button-blue; | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
&.active { | ||
a, a:hover { | ||
background-color: #26374a; | ||
color: #fff; | ||
} | ||
|
||
a:focus { | ||
outline: 5px auto #fff; | ||
outline-offset: -5px; | ||
} | ||
} | ||
} | ||
|
||
& + section { | ||
h1#wb-cont { | ||
border: none; | ||
font-size: 1.2em; | ||
line-height: 1.1; | ||
margin: 10px 0 11.5px; | ||
} | ||
|
||
.gc-most-requested { | ||
h2 { | ||
float: none; | ||
font-size: 1em; | ||
width: auto; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,9 @@ | ||
/* | ||
WET-BOEW | ||
@title: Sidebar component | ||
@desc: Styles specific to the sidebar component for GCWeb | ||
*/ | ||
|
||
.page-type-theme #gridContainer { | ||
width: 1170px; | ||
} |
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,41 @@ | ||
/* | ||
WET-BOEW | ||
@title: theme component | ||
@desc: Styles specific to the theme component for GCWeb | ||
*/ | ||
|
||
.page-type-theme { | ||
#gridContainer { | ||
display: flex; | ||
margin: 0 auto; | ||
padding: 0 15px; | ||
width: 970px; | ||
|
||
> nav { | ||
border-right: 5px solid #26374a; | ||
flex: 0 0 300px; | ||
|
||
.container { | ||
padding: 0; | ||
width: auto; | ||
} | ||
|
||
#menuTrigger { | ||
display: none; | ||
} | ||
|
||
ul { | ||
display: block !important; | ||
} | ||
|
||
& + section { | ||
flex: 1 0 0%; | ||
|
||
.container { | ||
padding-left: 35px; | ||
width: auto; | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.