Add frontpage and privacy page
This commit is contained in:
parent
32d9b81a0f
commit
b4b055df11
5 changed files with 125 additions and 1 deletions
|
@ -238,6 +238,26 @@ main ol > li::before {
|
|||
main li > ul,
|
||||
main li > ol {
|
||||
margin-top: 14px; }
|
||||
main table {
|
||||
width: 100%;
|
||||
margin-bottom: 26px;
|
||||
color: #d9e1e8; }
|
||||
main table tr:nth-child(2n),
|
||||
main table thead tr {
|
||||
background-color: #16191f; }
|
||||
main table th,
|
||||
main table td {
|
||||
font-size: 16px;
|
||||
padding: 10px;
|
||||
border: 1px solid #303643; }
|
||||
main table th .fa-check,
|
||||
main table td .fa-check {
|
||||
color: #79bd9a; }
|
||||
main table th .fa-times,
|
||||
main table td .fa-times {
|
||||
color: #df405a; }
|
||||
main table thead th {
|
||||
font-weight: 500; }
|
||||
main figure figcaption {
|
||||
margin-top: 8px;
|
||||
text-align: center; }
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -332,6 +332,36 @@ main {
|
|||
margin-top: 14px;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin-bottom: 26px;
|
||||
color: $lightest;
|
||||
|
||||
tr:nth-child(2n),
|
||||
thead tr {
|
||||
background-color: darken($darkest, 4%);
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
font-size: 16px;
|
||||
padding: 10px;
|
||||
border: 1px solid lighten($darkest, 8%);
|
||||
|
||||
.fa-check {
|
||||
color: $success;
|
||||
}
|
||||
|
||||
.fa-times {
|
||||
color: $error;
|
||||
}
|
||||
}
|
||||
|
||||
thead th {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
figure {
|
||||
figcaption {
|
||||
margin-top: 8px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue