-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMTslides.css
More file actions
executable file
·75 lines (58 loc) · 1.04 KB
/
Copy pathMTslides.css
File metadata and controls
executable file
·75 lines (58 loc) · 1.04 KB
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
/** define logo layout **/
/* define logo dimensions */
.gdbar img {
width: 600px !important;
height: 100px !important;
}
/* define logo position */
.gdbar {
width: 650px !important;
height: 120px !important;
}
/* define title slide background color */
.title-slide {
background: rgb(255, 100, 10);
}
/* define code chunk format */
pre {
width: 100%; /* 106%; */
left: 0; /* -60px; */
padding: 10px 15px 10px 15px; /* 10px 0 10px 60px; */
}
/** define footer format **/
slides > slide:not(.nobackground):before {
width: 300px;
height: 50px;
background-size: 300px 50px;
}
/** define two-column layouts **/
.column_left_50 {
float: left;
width: 45%;
text-align: left;
}
.column_right_50 {
float: right;
width: 48%;
text-align: left;
}
.column_left_40 {
float: left;
width: 40%;
text-align: left;
}
.column_right_60 {
float: right;
width: 59%;
text-align: left;
}
.column_left_60 {
float: left;
width: 60%;
text-align: left;
}
.column_right_40 {
float: right;
width: 40%;
text-align: left;
}