1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
This commit is contained in:
Matthias Kretschmann 2018-11-09 13:02:20 +01:00
parent 381dea108c
commit e4c1632191
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 9 additions and 13 deletions

View File

@ -5,9 +5,7 @@
background: $brand-black;
width: 100%;
padding: $spacer * 2 0;
min-height: 30rem;
max-height: 800px;
color: $brand-white;
text-align: center;
display: flex;

View File

@ -61,6 +61,7 @@ ul {
li {
&::before {
content: ' \25AA'; // Black Small Square: ▪
top: -2px;
}
}
}
@ -73,6 +74,7 @@ ol {
content: counter(ol-counter) '.';
counter-increment: ol-counter;
font-family: $font-family-button;
top: -1px;
}
}
@ -95,7 +97,6 @@ ol {
&::before {
position: absolute;
left: -($spacer / $line-height);
top: -1px;
color: $brand-grey-light;
user-select: none;
}
@ -217,11 +218,6 @@ table {
margin: 0;
padding: $spacer / 2;
border-bottom: 1px solid $brand-grey-lighter;
}
th {
font-family: $font-family-button;
font-weight: 600;
text-align: left;
&[align="center"] {
@ -233,8 +229,9 @@ table {
}
}
td {
th {
font-family: $font-family-button;
font-weight: 600;
}
}
@ -245,10 +242,11 @@ code,
kbd,
pre,
samp {
font-family: $font-family-monospace;
font-size: $font-size-small;
// lots of !important to overwrite prims.js theme
font-family: $font-family-monospace !important;
font-size: $font-size-small !important;
background: $brand-black !important;
color: $brand-grey-lighter !important;
color: $brand-white !important;
border-radius: $border-radius !important;
}