-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (63 loc) · 1.28 KB
/
styles.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
/* css styles */
.reveal a {
color: #cf3f02;
}
.reveal a:hover {
color: #ff4f02;
}
/* More specific selectors for footer links */
.reveal .footer a {
color: #cf3f02 !important;
}
.reveal .footer a:hover {
color: #cf3f02 !important;
}
/* Progress bar */
.reveal .progress {
background: rgba(207, 63, 2, 0.2);
}
.reveal .progress span {
background: #cf3f02;
}
/* Lists */
.reveal ul li::marker {
color: #cf3f02;
}
/* Blockquotes */
.reveal blockquote {
border-left: 4px solid #cf3f02;
padding-left: 1em;
}
/* Text selection */
::selection {
background: #cf3f02;
color: #fff;
}
/* Navigation controls */
.controls button {
color: #cf3f02 !important;
}
.controls button:hover {
color: #a33302 !important; /* assuming this is your hover color */
}
.controls .controls-arrow:before,
.controls .controls-arrow:after {
background-color: #cf3f02;
}
.controls .controls-arrow:hover:before,
.controls .controls-arrow:hover:after {
background-color: #a33302; /* assuming this is your hover color */
}
/* Logo in top-left */
.reveal .slide-logo {
display: block;
position: fixed;
bottom: unset !important;
right: unset !important;
top: 5px;
left: 12px;
height: 60px !important;
width: 60px !important;
max-width: unset !important;
max-height: unset !important;
}