-
Notifications
You must be signed in to change notification settings - Fork 320
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
1 parent
507bab4
commit 85eeed6
Showing
8 changed files
with
143 additions
and
36 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
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,80 @@ | ||
// GOVERNANCE | ||
//------------------------------------------------ | ||
//------------------------------------------------ | ||
|
||
.governance { | ||
// background: $gray-nutshell; | ||
|
||
.vertical-buttons-list { | ||
@include display(flex); | ||
@include flex-direction(column); | ||
@include justify-content(space-between); | ||
padding: 15px 0; | ||
li { | ||
margin-bottom: 10px; | ||
} | ||
// @include align-items(center); | ||
// @include justify-content(flex-start); | ||
} | ||
|
||
.button-expand { | ||
text-align: center; | ||
display: block; | ||
} | ||
|
||
.button-more { | ||
font-size: $font-size-small; | ||
padding: 5px; | ||
cursor: pointer; | ||
} | ||
|
||
.scala-items-list { | ||
.items-menu { | ||
.scala-item { | ||
@include span-columns(4); | ||
@include omega(3n); | ||
|
||
@include display(flex); | ||
@include flex-direction(column); | ||
// @include align-items(center); | ||
@include justify-content(space-between); | ||
padding: 15px 10px; | ||
text-align: center; | ||
transition: $base-transition; | ||
// border: 1px solid $gray-light; | ||
margin-top: 15px; | ||
@include bp(large) { | ||
@include span-columns(12); | ||
} | ||
|
||
min-height: 150px; | ||
|
||
h4 { | ||
font-size: $font-size-h3; | ||
color: #000; | ||
text-transform: uppercase; | ||
font-family: $base-font-family; | ||
margin-bottom: 10px; | ||
} | ||
|
||
p { | ||
font-size: $font-size-medium; | ||
} | ||
|
||
&.active { | ||
background: $gray-light; | ||
} | ||
} | ||
|
||
.items-content { | ||
background: $gray-light; | ||
transition: $base-transition; | ||
|
||
.items-code { | ||
display: none; | ||
padding: 5px 0; | ||
} | ||
} | ||
} | ||
} | ||
} |
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
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