diff --git a/_includes/roadmap_card.html b/_includes/roadmap_card.html new file mode 100644 index 0000000..102ad07 --- /dev/null +++ b/_includes/roadmap_card.html @@ -0,0 +1,58 @@ +
+
+
+
+ + +
+
+ + Portmaster + + + Spn + +
+
+
+ + + + +
+

SPN Community Node Support

+
+
+
+ All details will be finished to fully support community + nodes in the network. (This does not include the planned + compensation for running a node.) There will be a website + to easily get you started. +
+
+
+
+
+ #866 opened by BinaryMuse to atom/github +
+
+
+ + + + +
+
+
+
+
+
+
+
+ \ No newline at end of file diff --git a/_includes/roadmap_tablecard.html b/_includes/roadmap_tablecard.html new file mode 100644 index 0000000..0b20715 --- /dev/null +++ b/_includes/roadmap_tablecard.html @@ -0,0 +1,116 @@ +
+
+
+
+ + +
+ +
+
+ + Portmaster + + + Spn + +
+
+
+ + + + +
+

SPN Community Node Support will be releaced

+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+ Description +
+
+
+
+

+ All details will be finished to fully support community + nodes in the network. (This does not include the planned + compensation for running a node.) There will be a website + to easily get you started. +

+
+
+
+
+
+

The Challenge

+

+ All details will be finished to fully support community + nodes in the network. (This does not include the planned + compensation for running a node.) There will be a website + to easily get you started. +

+
+
+

The Challenge

+

+ All details will be finished to fully support community + nodes in the network. (This does not include the planned + compensation for running a node.) There will be a website + to easily get you started. +

+
+
+

The Challenge

+

+ All details will be finished to fully support community + nodes in the network. (This does not include the planned + compensation for running a node.) There will be a website + to easily get you started. +

+
+
+
+
+ #866 opened by BinaryMuse to atom/github +
+
+
+
+
+
+
diff --git a/_sass/_global.scss b/_sass/_global.scss index 8aafddf..0f929ec 100644 --- a/_sass/_global.scss +++ b/_sass/_global.scss @@ -180,6 +180,97 @@ a.link { .hover\:opacity-55:hover { opacity: 0.55; } + + +.dropinput { + position: absolute; + opacity: 0; + z-index: -1; +} + + +/* Accordion styles */ +.tabs { + border-radius: 8px; + overflow: hidden; + +} +.tab { + width: 100%; + color: black; + overflow: hidden; + &-label { + display: flex; + justify-content: space-between; + padding: 1em; + background: transparent; + font-weight: bold; + cursor: pointer; + /* Icon */ + &:hover { + background: transparent; + } + &::after { + content: " "; + width: 1em; + height: 1em; + text-align: center; + transition: all .0s; + transition-timing-function: ease; + transform: rotate(-90deg); + } + + } + &-content { + max-height: 0; + padding: 0 1em; + color: black; + background: transparent; + transition: all .2s; + transition-timing-function: ease; + + } + &-close { + display: flex; + justify-content: flex-end; + padding: 1em; + font-size: 0.75em; + background: transparent; + cursor: pointer; + &:hover { + background: transparent; + } + } +} + +#icon { + width: 35px; + position: fixed; + +} + +#icontwo { + width: 35px; + +} + +// :checked +input:checked { + + + label #icon { + transform: rotate(180deg); + } + + + label #icontwo { + transform: rotate(180deg); + } + + ~ .tab-content { + max-height: 100vh; + padding: 1em; + } +} + .dot { position: absolute; right: 0;