1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-24 12:21:09 +00:00

Revamping the Encrypted DNS page (#767)

Co-authored-by: lexi <git@lx-is.lol>
This commit is contained in:
Daniel Gray
2022-03-25 04:58:34 +00:00
parent 40162218de
commit 78b49b2f4e
32 changed files with 776 additions and 194 deletions

20
_sass/terminal.scss Normal file
View File

@@ -0,0 +1,20 @@
* { margin: 0; padding: 0; }
.terminal {
font-size: 15px;
color: white;
background-color: black;
font-family: monospace;
overflow: scroll;
padding: 10px;
border-radius: 10px;
-ms-overflow-style: none; /* Internet Explorer 10+, make scrollbars invisible */
scrollbar-width: none; /* Firefox, make scrollbars invisible */
margin: 25px;
}
.terminal::-webkit-scrollbar { /* WebKit, make scrollbars invisible */
width: 0;
height: 0;
box-shadow: 0px 0px 10px rgba(0,0,0,.4)
}