Skip to content

Commit b6e671e

Browse files
authored
Ajout cours algo
1 parent 64bb97a commit b6e671e

77 files changed

Lines changed: 9685 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
title: Datactivist
2+
author: Your Name
3+
version: 1.0.0
4+
contributes:
5+
formats:
6+
revealjs:
7+
theme: [default, custom.scss]
8+
slide-number: true
9+
show-slide-number: all
10+
logo: logo.png
11+
footer: ""
12+
title-slide-attributes:
13+
data-background-color: "#173541"
14+
mainfont: "Open Sans"
15+
mainfontoptions:
16+
- Extension=.ttf
17+
- UprightFont=*-Regular
18+
- BoldFont=*-Bold
19+
headingfont: "Montserrat"
20+
colors:
21+
datactivist:
22+
main: "#173541" # Nuit
23+
accent: "#E95459" # Rouge
24+
light: "#FFF1EB" # Rosé
25+
secondary: "#4ED9CC" # Turquoise
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
/*-- scss:defaults --*/
2+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
3+
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
4+
$headings-font-family: "Montserrat";
5+
$body-bg: white;
6+
$body-color: #173541;
7+
$link-color: #E95459;
8+
$selection-bg: #FFF1EB;
9+
$presentation-heading-color: #173541;
10+
$headings-font-weight: 800;
11+
$presentation-title-slide-text-align: left;
12+
13+
/*-- scss:rules --*/
14+
.reveal .slide-number {
15+
color: #E95459;
16+
}
17+
18+
.reveal .footer {
19+
color: #173541;
20+
font-family: "Open Sans";
21+
}
22+
23+
.reveal .slide-logo {
24+
max-height: 3rem;
25+
margin-bottom: 1rem;
26+
}
27+
28+
.reveal h1,
29+
.reveal h2,
30+
.reveal h3,
31+
.reveal h4,
32+
.reveal h5,
33+
.reveal h6 {
34+
font-family: "Montserrat" !important;
35+
}
36+
37+
.reveal .title {
38+
color: white;
39+
font-family: "Montserrat" !important;
40+
}
41+
42+
.title-slide h1 {
43+
font-family: "Montserrat" !important;
44+
}
45+
46+
.reveal p {
47+
font-family: "Open Sans";
48+
}
49+
50+
.reveal ul {
51+
font-family: "Open Sans";
52+
}
53+
54+
.reveal ol {
55+
font-family: "Open Sans";
56+
}
57+
58+
body {
59+
font-family: "Open Sans";
60+
}
61+
62+
.left-column {
63+
float: left;
64+
width: 30%;
65+
}
66+
67+
.right-column {
68+
float: right;
69+
width: 70%;
70+
}
71+
72+
.pull-left{
73+
float:left;
74+
width:50%;
75+
}
76+
77+
.pull-right{
78+
float:right;
79+
width:50%;
80+
}
81+
82+
.reveal p {
83+
font-family: "Open Sans";
84+
font-size: 25px;
85+
}
86+
87+
.reveal ul {
88+
font-size: 25px;
89+
}
90+
91+
.reveal ol {
92+
font-size: 25px;
93+
}
94+
95+
/* Couleur par défaut pour les liens et textes en bleu */
96+
.reveal a,
97+
.reveal .text-blue {
98+
color:#E95459; /* Turquoise de la charte */
99+
}
100+
101+
/* Pour le texte des références/citations */
102+
.reveal .citation,
103+
.reveal .quote {
104+
color: #E95459; /* Rouge de la charte */
105+
}
106+
107+
/* Pour assurer la cohérence des textes */
108+
.reveal p {
109+
color: #173541; /* Nuit de la charte */
110+
}
111+
112+
/* Pour le texte en blanc sur fond sombre */
113+
.reveal .text-white,
114+
.reveal .text-white h1,
115+
.reveal .text-white h2,
116+
.reveal .text-white h3,
117+
.reveal .text-white p,
118+
.reveal .text-white li {
119+
color: white !important;
120+
}
121+
122+
/* Pour les liens en blanc sur fond sombre */
123+
.reveal .text-white a {
124+
color: white;
125+
text-decoration: underline;
126+
}
127+
128+
/* Pour assurer la cohérence des textes */
129+
.reveal p {
130+
color: #173541; /* Nuit de la charte */
131+
}
132+
133+
/* Pour le texte en rouge */
134+
.reveal .red {
135+
color: #E95459; /* Rouge de la charte */
136+
}
137+
138+
/* Pour le texte en rouge dans les spans */
139+
.red {
140+
color: #E95459;
141+
}

_extensions/datactivist/logo.png

19.3 KB
Loading

0 commit comments

Comments
 (0)