-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathun.css
More file actions
117 lines (108 loc) · 1.72 KB
/
Copy pathun.css
File metadata and controls
117 lines (108 loc) · 1.72 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.wrapper .icons .fa-facebook-square:hover
{
color: rgb(38, 104, 247);
transition: 0.5s;
}
.wrapper .icons .fa-whatsapp:hover
{
color: #4AC959;
transition: 0.5s;
}
.wrapper .icons .fa-instagram:hover
{
color: #E1306C;
transition: 0.5s;
}
.wrapper .icons .fa-snapchat-square:hover
{
color: #FFFC00;
transition: 0.5s;
}
.wrapper .icons .fa-youtube-play:hover
{
color: #FF0000;
transition: 0.5s;
}
.wrapper .icons .fa-github-square:hover
{
color: #24292e;
transition: 0.5s;
}
.wrapper .icons .fa-steam-square:hover
{
color: #2a475e;
transition: 0.5s;
}
.wrapper .icons .fa-linkedin-square:hover
{
color: #0e76a8;
transition: 0.5s;
}
.wrapper .icons .fa-envelope-square:hover
{
color: #ff371d;
transition: 0.5s;
}
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
background: white;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #000;
}
/* Handle on hover */
.dark-mode ::-webkit-scrollbar-thumb:hover {
background: #50d890;
}
::-webkit-scrollbar-thumb:hover {
background: #e84a5f;
}
.foot
{
padding: 0;
margin: 0;
width: 100%;
}
.foot .footsvg
{
position: absolute;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.foot span
{
bottom: 1px;
position: absolute;
font-size: 1em;
color: #000;
z-index: 10000;
}
.foot .footsvg svg{
z-index: 1;
width: 100%;
}
.foot .footsvg .dmsvg
{
opacity: 0;
overflow: hidden;
}
.foot .footsvg .ndmsvg
{
position: absolute;
z-index: 10;
}
.dark-mode .foot .footsvg .dmsvg
{
opacity: 100%;
}
.dark-mode .foot .footsvg .ndmsvg
{
display: none;
}