Add native

This commit is contained in:
Jeremy Thomas
2018-03-29 22:25:55 +01:00
parent c6690db2f5
commit 88c0341a01
11 changed files with 439 additions and 26 deletions

View File

@@ -13771,4 +13771,146 @@ html.route-index .hero.is-primary a.column:hover .title strong {
}
}
.native-js {
display: none;
margin-left: auto;
margin-right: auto;
max-width: 760px;
opacity: 0;
visibility: hidden;
}
.native-js:not(:first-child) {
margin-top: 3rem;
}
.native-js:not(:last-child) {
margin-bottom: 3rem;
}
.native-show {
display: block;
opacity: 1;
visibility: visible;
}
.native-flex {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1.5rem;
text-decoration: none;
}
.native-img {
border-radius: 3px;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
height: 50px;
width: 125px;
}
.native-details {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
}
.native-main {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
}
.native-company {
display: block;
font-size: 10px;
letter-spacing: 2px;
margin-bottom: 4px;
text-transform: uppercase;
}
.native-desc {
display: block;
}
.native-cta {
border: none;
border-radius: 3px;
-webkit-box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.15);
display: inline-block;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
font-size: 0.75rem;
font-weight: 400;
padding: 0.75em 1em;
text-transform: uppercase;
-webkit-transform: translateY(-1px);
transform: translateY(-1px);
-webkit-transition: -webkit-transform .3s ease-in-out;
transition: -webkit-transform .3s ease-in-out;
transition: transform .3s ease-in-out;
transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
vertical-align: top;
white-space: nowrap;
}
.native-cta:hover {
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
@media screen and (max-width: 599px) {
.native-flex {
display: block;
text-align: center;
}
.native-main {
margin-bottom: 2rem;
}
.native-details {
margin: 1rem;
}
}
@media screen and (min-width: 600px) {
.native-flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.native-main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: 2rem;
}
.native-details {
margin-left: 2rem;
}
}
/*# sourceMappingURL=bulma-docs.css.map */