first commit
This commit is contained in:
commit
346d1cb29d
287 changed files with 43533 additions and 0 deletions
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* @file
|
||||
* Provides the layout styles for two-column layout section.
|
||||
*/
|
||||
|
||||
.layout--twocol-section {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.layout--twocol-section > .layout__region {
|
||||
flex: 0 1 100%;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 40em) {
|
||||
.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first,
|
||||
.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
|
||||
flex: 0 1 50%;
|
||||
}
|
||||
|
||||
.layout--twocol-section.layout--twocol-section--33-67 > .layout__region--first,
|
||||
.layout--twocol-section.layout--twocol-section--67-33 > .layout__region--second {
|
||||
flex: 0 1 33%;
|
||||
}
|
||||
|
||||
.layout--twocol-section.layout--twocol-section--33-67 > .layout__region--second,
|
||||
.layout--twocol-section.layout--twocol-section--67-33 > .layout__region--first {
|
||||
flex: 0 1 67%;
|
||||
}
|
||||
|
||||
.layout--twocol-section.layout--twocol-section--25-75 > .layout__region--first,
|
||||
.layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second {
|
||||
flex: 0 1 25%;
|
||||
}
|
||||
|
||||
.layout--twocol-section.layout--twocol-section--25-75 > .layout__region--second,
|
||||
.layout--twocol-section.layout--twocol-section--75-25 > .layout__region--first {
|
||||
flex: 0 1 75%;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
* @file
|
||||
* Provides the layout styles for layout_onecol.
|
||||
*/
|
||||
.layout--onecol .layout__region {
|
||||
width: 100%;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue