-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.scss
123 lines (98 loc) · 2.17 KB
/
custom.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
117
118
119
120
121
122
123
/*-- scss:defaults --*/
@import url("https://use.typekit.net/poo3ljh.css");
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
$cobalt: #203a9a;
$darkLeaf: #006833;
$lightLeaf: #69C028;
$darkGrey: #2A3540;
$mediumGrey: #52667A;
$lightGrey: #EBEEF0;
$presentation-font-size-root: 24pt;
$presentation-heading-font-weight: 700;
$presentation-heading-color: $cobalt;
$font-family-sans-serif: "Muli", "JetBrains Mono";
$font-family-monospace: "JetBrains Mono";
$border-width: 0px;
$mermaid-font-family: $font-family-sans-serif;
$mermaid-label-bg-color: $cobalt;
$mermaid-label-fg-color: #fff;
$mermaid-edge-color:$cobalt;
$mermaid-bg-color: $cobalt;
$mermaid-node-bg-color: $cobalt;
$mermaid-node-fg-color: #fff;
$mermaid-fg-color--lightest: $lightGrey;
$mermaid-fg-color--lighter: $lightGrey;
/*-- scss:rules --*/
.nodeLabel {
font-size: small;
}
.reveal a {
color: $cobalt;
}
.reveal .slide-number a {
color: $cobalt;
}
.reveal .controls, .reveal .slide-menu-button {
color: $cobalt;
}
.container {
display: grid;
grid-template-columns: 7ex auto;
align-items: center;
}
#vcenter {
vertical-align: middle;
}
// .reveal ul ul {
// // list-style-type: ;
// list-style-image: url("/home/flavien/github.com/PetitLepton/pyconfr-2024/logo-small.png");
// }
// .reveal ul {
// // list-style-type: ;
// list-style-image: url("/home/flavien/github.com/PetitLepton/pyconfr-2024/logo-small.png");
// }
.reveal li {
padding-left: 1ch;
}
.reveal li::marker {
content: "🍂";
font-size: 0.8em;
}
.reveal .slide-logo {
max-height: 3.5rem;
}
table {
border-color: None;
border: none;
}
.reveal table {
margin: 0;
}
.reveal td, .reveal tr, .reveal th {
border: 0px;
border-bottom: none;
border-top: none;
border-bottom-width: 0px;
border-top-width: 0px;
}
.reveal pre.sourceCode code {
background: $lightGrey;
// width: 40em;
font-size: 0.8rem;
}
.code-with-filename .code-with-filename-file {
background-color: $cobalt;
color: white;
font-size: 16pt;
}
.reveal code {
color: $darkLeaf;
}
code span .fu {
color: $cobalt;
}
code span .at,
code span .ex,
code span .bu {
color: black;
}