mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
115 lines
2.1 KiB
SCSS
115 lines
2.1 KiB
SCSS
@import 'variables';
|
|
|
|
.repository {
|
|
padding: $spacer / $line-height;
|
|
border: 1px solid $brand-grey-lighter;
|
|
background: $brand-white;
|
|
border-radius: $border-radius;
|
|
font-size: $font-size-small;
|
|
text-align: left;
|
|
width: 100%;
|
|
margin-bottom: $spacer;
|
|
}
|
|
|
|
.repositoryName {
|
|
font-size: $font-size-h4;
|
|
margin-top: 0;
|
|
margin-bottom: $spacer / 2;
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.repositoryRelease {
|
|
font-family: $font-family-base;
|
|
font-weight: $font-weight-base;
|
|
font-size: $font-size-small;
|
|
color: $brand-grey-light;
|
|
display: inline-block;
|
|
margin-left: $spacer / 4;
|
|
}
|
|
|
|
.repositoryMeta {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.repositoryLinks {
|
|
margin: 0;
|
|
padding: 0;
|
|
margin-left: -($spacer / $line-height);
|
|
|
|
li {
|
|
display: inline-block;
|
|
padding: 0;
|
|
margin-left: $spacer / $line-height;
|
|
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
font-family: $font-family-button;
|
|
font-weight: $font-weight-bold;
|
|
}
|
|
}
|
|
|
|
.repositorynumbers {
|
|
font-size: $font-size-small;
|
|
margin-left: -($spacer / 4);
|
|
margin-bottom: -.2rem;
|
|
flex: 1;
|
|
text-align: right;
|
|
|
|
a {
|
|
color: $brand-grey-light;
|
|
margin-left: $spacer / 4;
|
|
display: inline-block;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $brand-pink;
|
|
transform: none;
|
|
|
|
svg {
|
|
fill: $brand-pink;
|
|
}
|
|
}
|
|
|
|
span {
|
|
margin-left: -.15rem;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
display: inline-block;
|
|
fill: $brand-grey-light;
|
|
margin-bottom: -.1rem;
|
|
}
|
|
}
|
|
|
|
.repositoryReadme {
|
|
margin-top: $spacer / $line-height;
|
|
padding: $spacer / 2;
|
|
background: darken($brand-white, 2%);
|
|
|
|
h1,
|
|
h2 {
|
|
font-size: $font-size-large;
|
|
}
|
|
|
|
h3,
|
|
h4 {
|
|
font-size: $font-size-base;
|
|
}
|
|
}
|
|
|
|
.repositoryReadmeTitle {
|
|
font-size: $font-size-small !important; // stylelint-disable-line
|
|
font-family: $font-family-monospace;
|
|
font-weight: $font-weight-base;
|
|
margin: 0;
|
|
color: $brand-grey-light;
|
|
margin-bottom: $spacer / 2;
|
|
}
|