forked from ksky521/nodeppt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.dark.scss
167 lines (155 loc) · 3.91 KB
/
theme.dark.scss
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@import "compass/css3";
$gray-1: #e6e6e6;
$gray-2: #a9a9a9;
$gray-3: #797979;
$gray-4: #515151;
//colors
$bg-color: #232323;
$font-color: #f8f7f7;
$strong-color: #00CED1;
$quote-bg-color: #ACE2D2;
$quote-color: #000;
$title-color: #fff;
$link-color: #FA5B04;
$link-hover-color: #FE7429;
$link-bg-color: transparent;
$link-hover-bg-color: transparent;
$progress-color: #2187E7;
$selection-color: white;
$selection-bg-color: #d33682;
::selection {
color: $selection-color;
background-color: $selection-bg-color;
@include text-shadow(none);
}
a {
color: $link-color;
background-color: $link-bg-color;
border-bottom: 0;
&:hover {
color: $link-hover-color;
background-color: $link-hover-bg-color;
}
}
h1, h2, h3 {
color: $title-color;
@include text-shadow(1px 2px 0px $bg-color,3px 5px 0px rgba(0, 0, 0, 0.2));
letter-spacing: 4px;
font-weight: bolder;
}
h1 {
@include text-shadow(1px 2px 0px $bg-color,3px 5px 0px rgba(0, 0, 0, 0.2));
}
button {
@include background(linear-gradient(#F9F9F9 40%, #E3E3E3 70%));
border: 1px solid $gray-2;
@include text-shadow(1px 1px #fff);
}
button:not(:disabled):hover {
border-color: $gray-4;
}
button:not(:disabled):active {
@include background(linear-gradient(#E3E3E3 40%, #F9F9F9 70%));
}
table {
width: 100%;
color: black;
border-bottom: 0 none;
border-collapse: collapse;
background-color: white;
@include box-shadow(0 none);
thead th{
font-weight: bolder;
background-color: transparent;
border-bottom: 1px solid #111;
vertical-align:bottom;
}
tbody tr td{
vertical-align: top;
border-bottom: 1px #bfbfbf solid;
}
tr{
background-color: transparent;
}
tr:nth-child(even) {
background-color: transparent;
}
tbody tr:nth-child(odd){
background-color:#eee;
}
td.highlight {
color: #0377C0;
@include text-shadow(1px 1px 1px #aaa);
font-weight: normal;
background-color: transparent !important;
}
&.rows {
border-right: 1px solid $gray-3;
}
}
slides > slide{
-webkit-font-smoothing: subpixel-antialiased;
color: $font-color;
letter-spacing: 2px;
background-color: $bg-color;
&:nth-child(6n+1),
&:nth-child(6n+2),
&:nth-child(6n+3),
&:nth-child(6n+4),
&:nth-child(6n+5){
background-color: $bg-color;
}
.slide-wrapper{
strong{
@include text-shadow(none);
font-weight: bolder;
color: $strong-color;
}
blockquote {
&.pull-right{
border-right:0 none;
padding: 5px 28px 5px 5px;
::before{
font:normal normal normal 14px/1 FontAwesome;
content:"\f10e";
right: 6px;
position: absolute;
top: 6px;
}
small::after{
position: absolute;
content: '';
}
}
::before{
font:normal normal normal 14px/1 FontAwesome;
content:"\f10d";
left: 6px;
position: absolute;
top: 6px;
}
position: relative;
border-left: 0 none;
color: $quote-color;
padding: 5px 5px 5px 28px;
@include text-shadow(none);
p {
font-size: 22px;
line-height: 1.7em;
}
small{
color: $quote-color;
position: relative;
padding-left: 24px;
&::before{
position: absolute;
top: 3px;
content: '\2015 \00A0';
}
}
}
}
}
.progress span{
background: $progress-color;
}