-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (90 loc) · 1.38 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
*
{
margin:0;
padding:0;
font-family:consolas;
}
body
{
background: #000;
}
section
{
padding:10px
}
section h2
{
font-size:3.5em;
color:#555;
}
section p
{
font-size:1.2em;
color:#555;
}
#scrollpath
{
position: fixed;
top: 0;
right: 0;
width: 10px;
height: 100%;
background: rgba(red, green, blue, alpha);
}
#progressbar
{
position:fixed;
top: 0;
right: 0;
width: 10px;
background: linear-gradient(to top,#008aff,#00ffe7);
animation: animate 5s infinite;
}
#progressbar:before,
#progressbar:after
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top,#008aff,#00ffe7);
filter: blur(10px);
}
#progressbar:after
{
filter: blur(30px);
}
@keyframes animate
{
0%,100%
{
filter: hue-rotate(0deg);
}
50%
{
filter: hue-rotate(360deg);
}
}
::-webkit-scrollbar
{
width: 0;
}
#percent
{
position: fixed;
top: 50%;
transform: translateY(-50%) rotateX(180deg) rotateY(180deg);
right: 15px;
color: #fff;
font-size: 2em;
writing-mode: vertical-rl;
text-orientation: sideways;
}
h2 {text-align: center;}
img {
display: block;
margin-left: auto;
margin-right: auto;
}