-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.scss
116 lines (93 loc) · 1.56 KB
/
default.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
@import 'css3-sass-mixins/all';
$codefont: 'Courier New', Courier, monospace;
$mainfont: 'Trebuchet MS', Helvetica, sans-serif;
$altfont: Georgia, serif;
$maincolor: #F3F0E7;
$altcolor: #9D869C;
$codecolor: #000;
$textcolor: #32A632;
$regexcolor: #806E42;
body {
color: $maincolor;
font-family: $mainfont;
}
.slide {
@include linear-gradient(#333, #162340);
text-shadow: 2px 2px 2px #000;
}
h1, h2, h3 {
text-align: left;
padding-left: 30px;
margin-bottom: 50px;
}
h1 {
font-family: $mainfont;
}
h2, h3 {
font-family: $altfont;
color: $altcolor;
}
h2 {
font-style: italic;
font-size: 4em;
}
a {
color: $maincolor;
text-decoration: none;
}
strong, b {
font-weight: bolder;
color: $altcolor;
}
pre {
@include border-radius(10px 10px / 10px 10px);
margin: 1em 30px;
}
code {
font-family: $codefont;
font-size: .6em;
font-weight: bold;
text-shadow: none;
}
pre.sh_sourceCode {
.sh_string {
color: $textcolor;
font-family: $codefont;
}
.sh_regexp {
color: $regexcolor;
font-family: $codefont;
}
.sh_specialchar {
color: $regexcolor;
font-family: $codefont;
}
}
.title_desc {
text-align: right;
font-size: 1.5em;
margin-right: 30px;
li {
padding-bottom: 0.3em;
}
}
.unreadable {
padding-left: 30px;
padding-right: 30px;
}
.content > ul {
list-style: none;
padding-left: 30px;
font-size: 2.5em;
}
.content > ul > li {
padding: .1em 0 .1em 0;
margin-left: 0;
}
.content > p {
text-align: left;
font-size: 2.5em;
line-height: 1.3em;
padding-left: 30px;
margin: 0;
}