-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom.css
22 lines (20 loc) · 827 Bytes
/
custom.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
html body {
background: #1c1e20;
background: -moz-radial-gradient(center, circle cover, #466BB0 0%, #1c1e20 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #466BB0), color-stop(100%, #1c1e20));
background: -webkit-radial-gradient(center, circle cover, #466BB0 0%, #1c1e20 100%);
background: -o-radial-gradient(center, circle cover, #466BB0 0%, #1c1e20 100%);
background: -ms-radial-gradient(center, circle cover, #466BB0 0%, #1c1e20 100%);
background: radial-gradient(center, circle cover, #466BB0 0%, #1c1e20 100%);
background-color: #466BB0;
}
.reveal section pre {
background-color: #3F3F3F !important;
padding: 5px !important;
font-size: 0.65em;
overflow: hidden;
}
.reveal section pre code {
overflow-x: hidden;
max-height: none;
}