added page export and import

This commit is contained in:
Gani Georgiev
2022-08-05 23:25:16 +03:00
parent f459dd8812
commit 93ab5fbea2
12 changed files with 665 additions and 108 deletions
+30
View File
@@ -64,11 +64,13 @@ em {
}
ins {
color: var(--txtPrimaryColor);
background: var(--successAltColor);
text-decoration: none;
}
del {
color: var(--txtPrimaryColor);
background: var(--dangerAltColor);
text-decoration: none;
}
@@ -129,6 +131,14 @@ code {
border-radius: var(--baseRadius);
}
.code-block {
@extend %block;
overflow: auto;
padding: var(--xsSpacing);
white-space: pre-wrap;
background: var(--baseAlt1Color);
}
ol,
ul {
margin: 10px 0;
@@ -650,3 +660,23 @@ a,
}
}
}
.list {
@extend %block;
position: relative;
border: 1px solid var(--baseAlt1Color);
border-radius: var(--baseRadius);
.list-item {
word-break: break-all;
position: relative;
display: flex;
align-items: center;
width: 100%;
gap: 10px;
padding: 10px;
border-bottom: 1px solid var(--baseAlt1Color);
&:last-child {
border-bottom: 0;
}
}
}