Forking what is left of ZeroNet and hopefully adding an AT Proto Frontend/Proxy
1.scrollable {
2 overflow: hidden;
3}
4
5.scrollable.showScroll::after {
6 position: absolute;
7 content: '';
8 top: 5%;
9 right: 7px;
10 height: 90%;
11 width: 3px;
12 background: rgba(224, 224, 255, .3);
13}
14
15.scrollable .content-wrapper {
16 width: 100%;
17 height: 100%;
18 padding-right: 50%;
19 overflow-y: scroll;
20}
21.scroller {
22 margin-top: 5px;
23 z-index: 5;
24 cursor: pointer;
25 position: absolute;
26 width: 7px;
27 border-radius: 5px;
28 background: #3A3A3A;
29 top: 0px;
30 left: 395px;
31 -webkit-transition: top .08s;
32 -moz-transition: top .08s;
33 -ms-transition: top .08s;
34 -o-transition: top .08s;
35 transition: top .08s;
36}
37.scroller {
38 -webkit-touch-callout: none;
39 -webkit-user-select: none;
40 -khtml-user-select: none;
41 -moz-user-select: none;
42 -ms-user-select: none;
43 user-select: none;
44}