Init with some changes to the Serif Theme
This commit is contained in:
commit
912d143813
243 changed files with 15251 additions and 0 deletions
56
_sass/components/_strip.scss
Normal file
56
_sass/components/_strip.scss
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
.strip {
|
||||
background: white;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.strip-white {
|
||||
background-color: white;
|
||||
}
|
||||
.strip-grey {
|
||||
background-color: $white-offset;
|
||||
}
|
||||
.strip-diagonal {
|
||||
transform: skewY(5deg);
|
||||
padding-bottom: 50px;
|
||||
margin-bottom: 65px;
|
||||
> div {
|
||||
transform: skewY(-5deg);
|
||||
}
|
||||
}
|
||||
.strip-primary-gradient {
|
||||
background-image: linear-gradient(to right, $primary, $secondary);
|
||||
}
|
||||
.strip-primary-gradient-top-bottom {
|
||||
background-image: linear-gradient(to bottom, $primary, $secondary);
|
||||
}
|
||||
.strip-primary {
|
||||
background-color: $primary;
|
||||
}
|
||||
.strip-secondary {
|
||||
background-color: $secondary;
|
||||
}
|
||||
|
||||
.strip-diagonal-right {
|
||||
margin-top: -100px;
|
||||
transform: skewY(-5deg);
|
||||
padding-bottom: 100px;
|
||||
> div {
|
||||
transform: skewY(5deg);
|
||||
}
|
||||
}
|
||||
|
||||
.strip-diagonal-left {
|
||||
margin-top: -100px;
|
||||
transform: skewY(5deg);
|
||||
padding-bottom: 100px;
|
||||
> div {
|
||||
transform: skewY(-5deg);
|
||||
}
|
||||
}
|
||||
|
||||
.strip-bg-contain {
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.strip-bg-cover {
|
||||
background-size: cover;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue