Bulma v9 website (#3249)

* Add Bulma v9

* Add vendor dependencies

* Fix native

* Fix sponsors

* Add style attribute
This commit is contained in:
Jeremy Thomas
2021-01-27 23:30:42 +00:00
committed by GitHub
parent c5edaea84f
commit 08ef4df2c0
1963 changed files with 157468 additions and 9452 deletions

73
docs/_sass/global/cc.scss Normal file
View File

@@ -0,0 +1,73 @@
.cpck-window {
background-color: $white;
box-shadow: 0 0 1em rgba(black, 0.1);
padding: 1em 1.5em;
position: fixed;
z-index: 10;
}
.cpck-invisible {
display: none !important;
}
.cpck-link {
border-bottom: 1px solid $link;
padding-bottom: 2px;
&:hover {
border-bottom-width: 2px;
}
&:active {
background-color: $link-light;
}
}
.cpck-compliance {
margin-top: 1em;
}
.cpck-btn {
border: 2px solid $success;
border-radius: $radius;
color: $success;
display: inline-block;
font-weight: $weight-bold;
padding: 0.5em 1em;
vertical-align: top;
span {
margin-left: -0.125em;
margin-right: 0.5em;
}
&:hover {
background-color: $success-light;
color: $success-dark;
}
&:active,
&:focus {
background-color: darken($success-light, 5%);
border-color: $success-dark;
color: darken($success-dark, 5%);
outline: none;
}
}
@include mobile {
.cpck-window {
bottom: 0;
left: 0;
right: 0;
}
}
@include tablet {
.cpck-window {
border-radius: $radius;
bottom: 1em;
right: 1em;
width: 20rem;
}
}