-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (99 loc) · 2.69 KB
/
style.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
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
@import 'https://fonts.googleapis.com/css?family=Roboto';
@import 'https://fonts.googleapis.com/css?family=Inconsolata';
/*
$light: #ddd
$middle: #4BBBFA rgba(75, 187, 250, 1)
$dark: #222
*/
body {
font-family: 'Roboto', sans-serif;
color: #ddd;
background-color: #222;
font-weight: 100;
}
.light {
color: #222;
background-color: #ddd;
}
h1 {
text-transform: uppercase;
text-align: center;
margin: 20px 0;
font-size: 120px;
}
h2 {
color: #4BBBFA;
font-size: 60px;
font-weight: 900;
text-align: center;
}
h3 {
border-bottom: 0;
}
img {
max-width: 100%;
max-height: 100%;
display: inline-block;
margin: auto;
}
.slide {
background-color: #222;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.light .slide {
background-color: #ddd;
}
.slide-content {
height: auto;
max-height: 90%;
width: auto;
max-width: 90%;
margin: auto;
}
.hidden {
display: none;
}
.progress {
z-index: 100;
height: 5px;
}
.progress-bar {
background-color: rgba(75, 187, 250, .9);
transition: .3s;
height: 5px;
}
pre code {
font-family: 'Inconsolata', monospace;
}
pre {
font-size: 90%;
}
.arrow {
border: 30px solid rgba(75, 187, 250, .2);
}
.arrow:hover {
border: 30px solid rgba(75, 187, 250, .8);
}
.prev, .prev:hover {
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
border-left-width: 0;
border-right-width: 50px;
}
.next, .next:hover {
border-top-color: transparent;
border-bottom-color: transparent;
border-right-color: transparent;
border-left-width: 50px;
border-right-width: 0;
}
/*! Copyright (c) highlight.js v9.7.0 | BSD3 License | git.io/hljslicense */
.hljs{display:block;overflow-x:auto;padding:0.5em;background:#232323;color:#e6e1dc}.hljs-comment,.hljs-quote{color:#bc9458;font-style:italic}.hljs-keyword,.hljs-selector-tag{color:#c26230}.hljs-string,.hljs-number,.hljs-regexp,.hljs-variable,.hljs-template-variable{color:#a5c261}.hljs-subst{color:#519f50}.hljs-tag,.hljs-name{color:#e8bf6a}.hljs-type{color:#da4939}.hljs-symbol,.hljs-bullet,.hljs-built_in,.hljs-builtin-name,.hljs-attr,.hljs-link{color:#6d9cbe}.hljs-params{color:#d0d0ff}.hljs-attribute{color:#cda869}.hljs-meta{color:#9b859d}.hljs-title,.hljs-section{color:#ffc66d}.hljs-addition{background-color:#144212;color:#e6e1dc;display:inline-block;width:100%}.hljs-deletion{background-color:#600;color:#e6e1dc;display:inline-block;width:100%}.hljs-selector-class{color:#9b703f}.hljs-selector-id{color:#8b98ab}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}.hljs-link{text-decoration:underline}