-
Notifications
You must be signed in to change notification settings - Fork 0
/
dark.css
59 lines (46 loc) · 918 Bytes
/
dark.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
:root{
--background-color: #3a3a3a;
}
p{
color: #fff;
}
nav ul dark-mode-toggle{
color: #fff;
}
.btn:hover {
background: none;
color: #fff;
}
.title{
color: #fff;
}
.texto{
color: #fff;
}
.social-icon:hover{
background-color: #121212;
filter: invert(1);
}
.social-icon:nth-of-type(1){
background-image: url(Icons/brand-instagram-dark.png);
}
.social-icon:nth-of-type(2){
background-image: url(Icons/brand-twitch-dark.png);
}
.social-icon:nth-of-type(3){
background-image: url(Icons/brand-youtube-dark.png);
}
.social-icon:nth-of-type(4){
background-image: url(Icons/brand-twitter-dark.png);
}
.social-icon:nth-of-type(5){
background-image: url(Icons/brand-discord-dark.png);
}
.footer-dark-mode{
color: #fff;
}
@media (max-width: 858px){
ul{
background: #1d1d1d;
}
}