-
Notifications
You must be signed in to change notification settings - Fork 81
/
dark-mode2.css
76 lines (57 loc) · 1.22 KB
/
dark-mode2.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
/*!
* Dark Mode Switch v1.0.1 (https://github.com/coliff/dark-mode-switch)
* Copyright 2021 C.Oliff
* Licensed under MIT (https://github.com/coliff/dark-mode-switch/blob/main/LICENSE)
*/
*{
background-color: #111 !important;
color: #eee;
font-family: 'Special Elite', cursive;
}
nav a {
color: #ffffff;
font-family: 'arial black', arial, sans-serif;
padding: 0.5vh;
text-decoration: none;
background-color: black;
}
.bg-black {
background-color: #fff !important;
}
.bg-dark {
background-color: #eee !important;
}
.nav-home {background-color: black;}
.nav-my-videos {background-color: black;}
.nav-about-my-channel {background-color: black;}
.nav-my-photoshop {background-color: black;}
.bg-light {
color: #eee !important;}
.btn {
color: #eee;
}
.bg-white {
background-color: #000 !important;
}
button {
background-color:#ffffff;
border-color:#23272a;
}
.content{
background-color: #23272a !important;
margin: auto;
min-height: 700px;
padding: 50px;
width: 80%;
}
h1 {
color:#ffffff;
}
h2 {
text-align: center;
}
body {
text-align: center;
}
.btn-outline-dark{color:#ffffff;border-color:#343a40}
.btn-outline-dark:hover{color:#3366cc;border-color:#343a40}