-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdark.css
More file actions
51 lines (41 loc) · 820 Bytes
/
dark.css
File metadata and controls
51 lines (41 loc) · 820 Bytes
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
body.dark{
color: rgba(255,255,255,0.92);
background: #1D1D1D url(Images/background.png);
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: repeat;
}
body.dark a:link{
color: #16AD6C;
}
body.dark a:hover{
color: #16AD6C;
}
body.dark a:active{
color: #16AD6C;
}
body.dark a:visited{
color: #16AD6C;
}
body.dark .jumbotron{
background-color: rgb(29,29,29,0.9);
}
body.dark .panel{
background: rgba(18, 18, 18, 0.9);
}
body.dark .button{
background-color: #29612b;
color: white;
}
body.dark .button:hover{
background-color: #1c421d;
}
body.dark .button:active{
background-color: #29612b;
color: white;
}
body.dark .selected-button{
background-color: #133815;
color: white;
}