Docs sync @ 9490aa2 Fixed typo (#54)

Updated .vscode dir, and added assets
This commit is contained in:
Riccardo
2023-10-25 11:42:02 +02:00
committed by GitHub
parent f4b87411d8
commit 1403a6dfe7
33 changed files with 147 additions and 37 deletions

View File

@ -3,6 +3,10 @@
@import "{{ site.theme }}";
a {
color: #3300ff;
}
.markdown-body {
max-width: 800px;
font-size: 16px;
@ -22,6 +26,22 @@ input.task-list-item-checkbox {
margin-right: 4px;
}
img[src*="demo"] {
border: 1px #eee solid;
-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.1);
-moz-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.1);
box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.1);
}
@media only screen and (min-width: 1170px) {
img[src*="demo"] {
max-width: 130%;
margin-left: -15%;
margin-top: 20px;
margin-bottom: 20px;
}
}
h1,
h2,
h3,
@ -31,3 +51,24 @@ blockquote {
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida,
"DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
}
.wikilink:before {
content: "[[";
opacity: 0.5;
}
.wikilink:after {
content: "]]";
opacity: 0.5;
}
.github-only {
display: none;
}
.announcement {
background: #ede7ff;
padding: 4px 16px;
color: black;
border-radius: 4px;
}