File tree Expand file tree Collapse file tree 3 files changed +32
-48
lines changed Expand file tree Collapse file tree 3 files changed +32
-48
lines changed Original file line number Diff line number Diff line change
1
+ :root {
2
+ --r-background-color : #{$background--light } ;
3
+ --r-code-font : #{$font-family-mono } ;
4
+ --r-heading-color : #{$text--light } ;
5
+ --r-heading-font : #{$font-family-title } ;
6
+ --r-link-color : #{$text-links--light } ;
7
+ --r-main-color : #{$text--light } ;
8
+ --r-main-font-size : #{$font-size } ;
9
+ --r-main-font : #{$font-family-normal } ;
10
+ }
11
+
12
+ .reveal {
13
+ width : 100% ;
14
+ height : $spacer-large * 25 ;
15
+ }
16
+
17
+ .header-left ,
18
+ .footer-left {
19
+ position : absolute ;
20
+ left : 0% ;
21
+ margin : $spacer-large ;
22
+ padding : $spacer-small ;
23
+ }
24
+
25
+ .header-left {
26
+ top : 0% ;
27
+ }
28
+
29
+ .footer-left {
30
+ bottom : 0% ;
31
+ }
Original file line number Diff line number Diff line change 13
13
/* code syntax highlight */
14
14
@import " gen_syntax" ;
15
15
@import " syntax" ;
16
+ @import " slides" ;
Original file line number Diff line number Diff line change 1
1
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/reveal.min.css " />
2
2
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/theme/black.min.css " id ="theme " />
3
3
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/plugin/highlight/monokai.min.css " />
4
-
5
- < style type ="text/css ">
6
- : root {
7
- --r-background-color : rgb (29 , 33 , 44 );
8
- --r-main-color : aqua;
9
- --r-heading-color : aqua;
10
- --r-heading-text-transform : none;
11
- --r-main-font-size : 1.2em ;
12
- --r-main-font : Arial, Helvetica, Verdana, sans-serif;
13
- --r-heading-font : "Times New Roman" , Garamond, Georgia, serif;
14
- --r-code-font : "Ubuntu mono" , "Fira code" , monospace;
15
- --r-selection-color : white;
16
- --r-selection-background-color : blue;
17
- --r-link-color : lightgreen;
18
- --r-link-color-hover : magenta;
19
- }
20
-
21
- code ,
22
- kbd {
23
- color : # 23b0ff ;
24
- background : rgba (35 , 176 , 255 , 0.2 );
25
- padding : 1px 6px ;
26
- margin : 0 2px ;
27
- }
28
-
29
- .header-left {
30
- position : absolute;
31
- top : 0% ;
32
- left : 0% ;
33
- margin : 20px ;
34
- padding : 10px ;
35
- }
36
-
37
- .footer-left {
38
- position : absolute;
39
- bottom : 0% ;
40
- left : 0% ;
41
- margin : 20px ;
42
- padding : 10px ;
43
- }
44
-
45
- @media print {
46
- @page {
47
- size : A4 landscape;
48
- margin : 1in ;
49
- }
50
- }
51
- </ style >
You can’t perform that action at this time.
0 commit comments