1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
docs/src/components/Components.module.scss
2018-11-09 16:49:55 +01:00

73 lines
1.2 KiB
SCSS

@import 'variables';
.components {
margin-top: $spacer * 2;
}
.quickrun {
padding-top: $spacer * 2;
padding-bottom: $spacer * 2;
text-align: center;
}
.componentsLists {
@media (min-width: $break-point--medium) {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
}
.componentsList {
@media (min-width: $break-point--medium) {
flex: 0 0 45%;
}
}
.componentsWrapper {
@media (min-width: $break-point--small) {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
}
.componentsTitle {
font-size: $font-size-h4;
color: $brand-grey-light;
}
.component {
padding: $spacer / $line-height;
border: 1px solid $brand-grey-lighter;
border-radius: $border-radius;
margin-bottom: 5%;
@media (min-width: $break-point--small) {
flex: 0 0 100%;
}
}
.componentName {
font-size: $font-size-large;
margin-top: 0;
}
.componentLinks {
margin: 0;
padding: 0;
margin-left: -($spacer / 2);
li {
display: inline-block;
padding: 0;
margin-left: $spacer / 2;
&:before { display: none; }
}
a {
}
}