Skip to content

Commit ecc8c78

Browse files
committed
tweaks to blood theme
1 parent 364a3f9 commit ecc8c78

File tree

2 files changed

+4
-28
lines changed

2 files changed

+4
-28
lines changed

css/theme/blood.css

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,7 @@
1515
*********************************************/
1616
body {
1717
background: #222;
18-
background: -moz-radial-gradient(center, circle cover, #626262 0%, #222 100%);
19-
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222));
20-
background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222 100%);
21-
background: -o-radial-gradient(center, circle cover, #626262 0%, #222 100%);
22-
background: -ms-radial-gradient(center, circle cover, #626262 0%, #222 100%);
23-
background: radial-gradient(center, circle cover, #626262 0%, #222 100%);
24-
background-color: #2b2b2b; }
18+
background-color: #222; }
2519

2620
.reveal {
2721
font-family: Ubuntu, 'sans-serif';
@@ -282,12 +276,6 @@ body {
282276
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
283277
font-weight: 700; }
284278

285-
.reveal a, .reveal a:hover {
286-
text-shadow: 2px 2px 2px #000; }
287-
288-
.reveal small a, .reveal small a:hover {
289-
text-shadow: 1px 1px 1px #000; }
290-
291279
.reveal p code {
292280
background-color: #23241f;
293281
display: inline-block;

css/theme/source/blood.scss

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ $blood: #a23;
2424
$coal: #222;
2525
$codeBackground: #23241f;
2626

27+
$backgroundColor: $coal;
28+
2729
// Main text
2830
$mainFont: Ubuntu, 'sans-serif';
2931
$mainFontSize: 36px;
@@ -45,10 +47,6 @@ $linkColorHover: lighten( $linkColor, 20% );
4547
$selectionBackgroundColor: $blood;
4648
$selectionColor: #fff;
4749

48-
// Background generator
49-
@mixin bodyBackground() {
50-
@include radial-gradient( $coal, lighten( $coal, 25% ) );
51-
}
5250

5351
// Theme template ------------------------------
5452
@import "../template/theme";
@@ -61,7 +59,7 @@ $selectionColor: #fff;
6159
text-shadow: 1px 1px $coal;
6260
}
6361

64-
.reveal h1,
62+
.reveal h1,
6563
.reveal h2,
6664
.reveal h3,
6765
.reveal h4,
@@ -70,16 +68,6 @@ $selectionColor: #fff;
7068
font-weight: 700;
7169
}
7270

73-
.reveal a,
74-
.reveal a:hover {
75-
text-shadow: 2px 2px 2px #000;
76-
}
77-
78-
.reveal small a,
79-
.reveal small a:hover {
80-
text-shadow: 1px 1px 1px #000;
81-
}
82-
8371
.reveal p code {
8472
background-color: $codeBackground;
8573
display: inline-block;

0 commit comments

Comments
 (0)