Projet

Général

Profil

0001-dordogne-cd24-initial-theme-36952.patch

Serghei Mihai, 14 avril 2020 21:00

Télécharger (736 ko)

Voir les différences:

Subject: [PATCH] dordogne-cd24: initial theme (#36952)

 static/dordogne-cd24/_custom.scss             | 512 ++++++++++++++++++
 static/dordogne-cd24/_vars.scss               |  52 ++
 static/dordogne-cd24/config.json              |  17 +
 .../dordogne-cd24/icons/icon-association.png  | Bin 0 -> 1948 bytes
 .../dordogne-cd24/icons/icon-citoyennete.png  | Bin 0 -> 1307 bytes
 .../dordogne-cd24/icons/icon-collectivite.png | Bin 0 -> 2327 bytes
 static/dordogne-cd24/icons/icon-culture.png   | Bin 0 -> 1391 bytes
 static/dordogne-cd24/icons/icon-eco.png       | Bin 0 -> 1155 bytes
 static/dordogne-cd24/icons/icon-education.png | Bin 0 -> 1256 bytes
 static/dordogne-cd24/icons/icon-enfance.png   | Bin 0 -> 1165 bytes
 .../dordogne-cd24/icons/icon-entreprise.png   | Bin 0 -> 1967 bytes
 .../icons/icon-environnement.png              | Bin 0 -> 1365 bytes
 .../dordogne-cd24/icons/icon-particulier.png  | Bin 0 -> 1988 bytes
 static/dordogne-cd24/icons/icon-sante.png     | Bin 0 -> 1659 bytes
 static/dordogne-cd24/icons/icon-securite.png  | Bin 0 -> 1305 bytes
 static/dordogne-cd24/icons/icon-sport.png     | Bin 0 -> 1410 bytes
 static/dordogne-cd24/img/facebook.svg         |   1 +
 static/dordogne-cd24/img/header-text.png      | Bin 0 -> 3815 bytes
 static/dordogne-cd24/img/header.png           | Bin 0 -> 278148 bytes
 static/dordogne-cd24/img/instagram.svg        |   1 +
 static/dordogne-cd24/img/logo.png             | Bin 0 -> 260570 bytes
 static/dordogne-cd24/img/logo.svg             |   1 +
 static/dordogne-cd24/img/loupe.png            | Bin 0 -> 554 bytes
 static/dordogne-cd24/img/twitter.svg          |   1 +
 static/dordogne-cd24/img/vimeo.svg            |   1 +
 static/dordogne-cd24/img/youtube.svg          |   1 +
 static/dordogne-cd24/style.scss               |   6 +
 .../dordogne-cd24/authentic2/login.html       |   5 +
 .../registration/registration_form.html       |   5 +
 29 files changed, 603 insertions(+)
 create mode 100644 static/dordogne-cd24/_custom.scss
 create mode 100644 static/dordogne-cd24/_vars.scss
 create mode 100644 static/dordogne-cd24/config.json
 create mode 100644 static/dordogne-cd24/icons/icon-association.png
 create mode 100644 static/dordogne-cd24/icons/icon-citoyennete.png
 create mode 100644 static/dordogne-cd24/icons/icon-collectivite.png
 create mode 100644 static/dordogne-cd24/icons/icon-culture.png
 create mode 100644 static/dordogne-cd24/icons/icon-eco.png
 create mode 100644 static/dordogne-cd24/icons/icon-education.png
 create mode 100644 static/dordogne-cd24/icons/icon-enfance.png
 create mode 100644 static/dordogne-cd24/icons/icon-entreprise.png
 create mode 100644 static/dordogne-cd24/icons/icon-environnement.png
 create mode 100644 static/dordogne-cd24/icons/icon-particulier.png
 create mode 100644 static/dordogne-cd24/icons/icon-sante.png
 create mode 100644 static/dordogne-cd24/icons/icon-securite.png
 create mode 100644 static/dordogne-cd24/icons/icon-sport.png
 create mode 100644 static/dordogne-cd24/img/facebook.svg
 create mode 100644 static/dordogne-cd24/img/header-text.png
 create mode 100644 static/dordogne-cd24/img/header.png
 create mode 100644 static/dordogne-cd24/img/instagram.svg
 create mode 100644 static/dordogne-cd24/img/logo.png
 create mode 100644 static/dordogne-cd24/img/logo.svg
 create mode 100644 static/dordogne-cd24/img/loupe.png
 create mode 100644 static/dordogne-cd24/img/twitter.svg
 create mode 100644 static/dordogne-cd24/img/vimeo.svg
 create mode 100644 static/dordogne-cd24/img/youtube.svg
 create mode 100644 static/dordogne-cd24/style.scss
 create mode 100644 templates/variants/dordogne-cd24/authentic2/login.html
 create mode 100644 templates/variants/dordogne-cd24/registration/registration_form.html
static/dordogne-cd24/_custom.scss
1
$icons: (
2
	"association": "icon-association.png",
3
	"citoyennete": "icon-citoyennete.png",
4
	"collectivite": "icon-collectivite.png",
5
	"culture": "icon-culture.png",
6
	"eco": "icon-eco.png",
7
	"education": "icon-education.png",
8
	"enfance": "icon-enfance.png",
9
	"entreprise": "icon-entreprise.png",
10
	"environnement": "icon-environnement.png",
11
	"particulier": "icon-particulier.png",
12
	"sante": "icon-sante.png",
13
	"securite": "icon-securite.png",
14
	"sport": "icon-sport.png"
15
);
16

  
17
$social-icons: (
18
	"facebook": "facebook.svg",
19
	"twitter": "twitter.svg",
20
	"youtube": "youtube.svg",
21
	"vimeo": "vimeo.svg",
22
	"instagram": "instagram.svg"
23
);
24

  
25
$header-height: 423px;
26
$header-border-height: 100px;
27
$mobile-header-height: 360px;
28
$mobile-header-border-height: 60px;
29
$very-small-screen: 340px;
30

  
31
%button {
32
	@extend %button;
33
	text-transform: uppercase;
34
	font-weight: bold;
35
	font-size: 16px;
36
}
37

  
38
%cancel-button {
39
	@extend %cancel-button;
40
	color: #000;
41
	border: 1px solid #000;
42
	background: #fff;
43
}
44

  
45
@mixin after-line($color: #cbd05d) {
46
	&::after {
47
		display: block;
48
		margin-top: 0.5em;
49
		content: '';
50
		background: $color;
51
		width: 2em;
52
		height: 2px;
53
	}
54
}
55

  
56
.with-after-line {
57
	@include after-line;
58
}
59

  
60
%header {
61
	background: $primary-color;
62
	padding: 1.5em 3em;
63
	margin-bottom: 2em;
64
	text-transform: uppercase;
65
	@media screen and ($max-mobile-viewport) {
66
		padding: 2em;
67
		margin-bottom: 1em;
68
	}
69
	@include after-line;
70
}
71

  
72
div#header-wrapper {
73
	border-top: $header-border-height solid #000;
74
	height: $header-height;
75
	background: url('img/header.png') center top no-repeat;
76
	@media screen and ($max-mobile-viewport) {
77
		border-top: $mobile-header-border-height solid #000;
78
		background-size: auto $mobile-header-height;
79
		height: $mobile-header-height;
80
	}
81
}
82

  
83
div#header {
84
	h1#logo {
85
		position: absolute;
86
		top: -100px;
87
		left: 20px;
88
		background: url('img/logo.svg') center center no-repeat;
89
		background-size: contain;
90
		height: $header-border-height;
91
		width: 100px;
92
		@media screen and ($max-mobile-viewport) {
93
			top: -$mobile-header-border-height;
94
			left: 0;
95
			padding-left: 40px;
96
			height: $mobile-header-border-height;
97
			width: 60px;
98
		}
99
		@media screen and (max-width: $very-small-screen) {
100
			padding-left: 5px;
101
		}
102
	}
103
	h1#logo a {
104
		display: block;
105
		height: $header-border-height;
106
		width: 445px;
107
		margin-left: 20px;
108
		background: url('img/header-text.png') center right no-repeat;
109
		text-indent: -9999px;
110
		@media screen and ($max-mobile-viewport) {
111
			margin-left: 0;
112
			padding-left: 0;
113
			height: $mobile-header-border-height;
114
			width: 218px;
115
			background-position: center left;
116
			background-size: contain;
117
		}
118
		@media screen and (max-width: $very-small-screen) {
119
			width: 50px;
120
			background: none;
121
		}
122
	}
123
}
124

  
125
div#nav-wrapper {
126
	margin-top: -2.5em;
127
	@media screen and ($max-mobile-viewport) {
128
		margin: 0;
129
		position: absolute;
130
		right: 0;
131
		top: $mobile-header-border-height;
132
	}
133
	button {
134
		position: absolute;
135
		top: -$mobile-header-border-height;
136
		right: 0;
137
	}
138
}
139

  
140
div.pwa-navigation ul li a {
141
	line-height: 1.75em;
142
}
143

  
144
div.gru-nav {
145
	.gru-nav-button {
146
		& .icon-bar {
147
			left: 20px;
148
			width: 20px;
149
		}
150
		& .icon-bar-1 {
151
			top: 23px;
152
		}
153
		& .icon-bar-2 {
154
			top: 29px;
155
		}
156
		& .icon-bar-3 {
157
			top: 35px;
158
		}
159
		+ ul {
160
			border-top: 0;
161
		}
162
	}
163
	ul a {
164
		text-transform: uppercase;
165
		position: relative;
166
	}
167
	> ul {
168
		margin: 1em 0;
169
		@media screen and ($max-mobile-viewport) {
170
			margin: 0;
171
		}
172
		> li {
173
			&:first-child,
174
			&.selected, &.selected + li,
175
			&:hover, &:hover + li {
176
				> a::before {
177
					opacity: 0;
178
				}
179
			}
180
			> a {
181
				margin: 0;
182
				padding: 0.75em 2em;
183
				line-height: 2.5em;
184
				@media screen and ($max-mobile-viewport) {
185
					padding-top: 0;
186
					padding-bottom: 0;
187
				}
188
				&::before {
189
					position: absolute;
190
					left: 0;
191
					top: 10px;
192
					content: '';
193
					width: 1px;
194
					height: calc(100% - 20px);
195
					background: #c2c5c8;
196
					opacity: 1;
197
					transition: opacity 0.5s;
198
				}
199
				+ ul {
200
					li {
201
						&:hover {
202
							background: #cbd05d;
203
							> a {
204
								background: #cbd05d;
205
								color: #000;
206
							}
207
						}
208
						> a {
209
							font-weight: normal;
210
							color: #f4f7fa;
211
							font-size: 85%;
212
							padding: 0.75em 3em;
213
							@media screen and ($max-mobile-viewport) {
214
								padding: 0.5em 3em;
215
							}
216
							&::before {
217
								position: absolute;
218
								left: 3.5em;
219
								content: '\f054'; /* chevron-right */
220
								font-family: FontAwesome;
221
								font-size: 60%;
222
							}
223
						}
224
					}
225
				}
226
				@media screen and ($max-mobile-viewport) {
227
					margin: 0;
228
				}
229
			}
230
		}
231
	}
232
}
233

  
234
div#side, div#sidebar {
235
	box-shadow: 3px 3px 20px 0px #dedede;
236
}
237

  
238
div#tracking-code {
239
	h3 {
240
		background: #fff;
241
		font-weight: bold;
242
	}
243
	a {
244
		padding: 0 1rem;
245
		font-size: 110%;
246
		&::after {
247
			margin-top: 5px;
248
			content: '';
249
			display: block;
250
			width: 60px;
251
			height: 2px;
252
			background: #cbd05d;
253
		}
254
	}
255
}
256

  
257
.wcs-step {
258
	padding-top: $wcs-steps-spacing;
259
}
260

  
261
.wcs-steps--list {
262
	background: $primary-color;
263
}
264

  
265
.wcs-step--marker {
266
	border-right: 1px solid #c2c5c8;
267
}
268

  
269
.wcs-step.current {
270
	background: #fff;
271
}
272

  
273
.RadiobuttonsWidget, .CheckboxWidget,
274
.CheckboxesWidget {
275
	input + span {
276
		padding-left: 1.5rem;
277
		&::before {
278
			height: 1.1rem;
279
			width: 1.1rem;
280
			top: 0;
281
		}
282
		&::after {
283
			left: 4px;
284
			top: 4px;
285
			width: calc(1.1rem - 8px);
286
			height: calc(1.1rem - 8px);
287
			background: rgba(194, 197, 200, 0.47);
288
		}
289
	}
290
}
291
.gru-content {
292
	div.cell, .block {
293
		margin-bottom: 2em;
294
	}
295
	div.a2-block {
296
		h2 {
297
			@extend %header;
298
		}
299
	}
300
    div.wcsformsofcategorycell, div.linklistcell {
301
		h2:first-child {
302
			text-transform: uppercase;
303
			background: transparent;
304
			border: 1px solid #c2c5c8;
305
			padding: 1em;
306
			&::after {
307
				color: #88446b;
308
			}
309
		}
310
	}
311
	@media screen and ($max-mobile-viewport) {
312
		div#sidebar {
313
			order: 1
314
		}
315
	}
316
}
317

  
318
div#footer {
319
	font-size: 80%;
320
	@media screen and ($max-mobile-viewport) {
321
		padding: 0 2em;
322
	}
323
	div.links-list {
324
		@media screen and ($max-mobile-viewport) {
325
			margin: 0 0.5em;
326
		}
327
		li {
328
			border: 0;
329
			display: flex;
330
			align-items: baseline;
331
			&::before {
332
				content: '\f054'; /* chevron-right */
333
				font-family: FontAwesome;
334
				font-size: 70%;
335
				margin-right: 3px;
336
			}
337
		}
338
		a {
339
			color: #000;
340
			padding: 0.1rem;
341
			&:hover {
342
				background: transparent;
343
				text-decoration: underline;
344
			}
345
		}
346
	}
347
	div.cell.social-links ul {
348
		margin: 0;
349
		padding: 0;
350
		display: flex;
351
		@media screen and ($max-mobile-viewport) {
352
			margin: 2em 0;
353
		}
354
		li {
355
			list-style-type: none;
356
			&:not(:first-child) a {
357
				border-left: 1px solid #000;
358
			}
359
			@each $name, $img in $social-icons {
360
				a.icon-#{$name} {
361
					width: 2.5em;
362
					display: block;
363
					overflow: hidden;
364
					color: transparent;
365
					padding: 0 15px;
366
					background: url('img/#{$img}') center center no-repeat;
367
				}
368
			}
369
		}
370
	}
371
}
372

  
373
div.searchcell {
374
	position: relative;
375
	form {
376
		padding: 0;
377
	}
378
	input.combo-search-input {
379
		padding-right: 50px;
380
		line-height: 2em;
381
		margin-right: 0;
382
		font-weight: bold;
383
	}
384
	button, button:hover {
385
		position: absolute;
386
		right: 0;
387
		background-color: transparent;
388
		border: 0;
389
		box-shadow: none;
390
		margin: 10px 0;
391
		height: 40px;
392
		width: 50px;
393
		padding: 0;
394
		border-left: 1px solid #c2c5c8;
395
		background-image: url('img/loupe.png');
396
		background-position: center center;
397
		background-repeat: no-repeat;
398
		background-size: 35%;
399
		overflow: hidden;
400
		color: transparent;
401
		text-overflow: hide;
402
	}
403
}
404

  
405
div#columns > div.search-cell {
406
	display: flex;
407
	justify-content: center;
408
	> div {
409
		width: 75%;
410
		@media screen and ($max-mobile-viewport) {
411
			width: 100%;
412
		}
413
	}
414
}
415

  
416
/* general headers styles */
417

  
418
h1, h2, h3, h4 {
419
	font-weight: bold;
420
	text-transform: uppercase;
421
}
422

  
423
h1 {
424
	font-size: 30px;
425
}
426

  
427
h2 {
428
	font-size: 26px;
429
}
430

  
431
h3 {
432
	font-size: 22px;
433
	color: #88446b
434
}
435

  
436
h4 {
437
	font-size: 19px;
438
}
439

  
440
input, select {
441
	line-height: 2.25em;
442
}
443

  
444
.a2-block {
445
	form p {
446
		margin-left: 0;
447
	}
448
	h2 {
449
		@extend %header;
450
	}
451
}
452

  
453
div#login-page h1, div#registration-blocks h1 {
454
	@extend %header;
455
}
456

  
457
div#login-page a {
458
	font-weight: bold;
459
	text-decoration: underline;
460
}
461

  
462
div#registration-blocks {
463
	h2 {
464
		display: none;
465
	}
466
}
467

  
468
div#sidebar {
469
	margin-right: 2.5em;
470
	h1, h2, h3 {
471
		@include after-line(#88446b);
472
	}
473
}
474

  
475
div.linkcell.homepage-link {
476
	border: 1px solid #d2d2d2;
477
	font-weight: bold;
478
	text-transform: uppercase;
479
	font-size: 90%;
480
	a {
481
		padding-top: 5rem;
482
		@media screen and ($max-mobile-viewport) {
483
			padding-top: 1rem;
484
			padding-left: 5rem;
485
		}
486
		@include after-line(#000);
487
	}
488
	&[class*=" icon-"] {
489
		a {
490
			background-position: 1rem 1rem;
491
			background-size: auto 2.5rem;
492
			display: block;
493
		}
494
	}
495
}
496

  
497
@each $name, $file in $icons {
498
	div.linkcell.icon-#{$name} a {
499
		background-image: url(icons/#{$file});
500
		background-repeat: no-repeat;
501
	}
502
	div.wcsformsofcategorycell.icon-#{$name},
503
	div.linklistcell.icon-#{$name} {
504
		h2:first-child {
505
			background-image: url(icons/#{$file});
506
			background-repeat: no-repeat;
507
			padding-left: 3em;
508
			background-position: 0.5em;
509
			background-size: 2em;
510
		}
511
	}
512
}
static/dordogne-cd24/_vars.scss
1
$primary-color: #f4f7fa;
2
$width: 1316px;
3

  
4
$font-family: Montserrat, sans-serif;
5
$font-color: #000;
6
$font-size: 18px;
7

  
8
$link-color: #000;
9

  
10
$nav-background: #3d424a;
11
$nav-active-color: #000;
12
$nav-color: #fff;
13
$nav-button-background: #3d424a;
14
$nav-menu-side: 60px;
15

  
16
$nav-mobile-bottom-bar-background: $primary-color;
17
$nav-mobile-bottom-bar-color: #3d424a;
18
$nav-mobile-bottom-bar-item-selected-background: #879B35;
19
$nav-mobile-bottom-bar-item-hover-background: #879B35;
20

  
21
$widget-background: $primary-color;
22
$widget-border: 0;
23

  
24
$widget-custom-radio-checkbox: true;
25
$widget-custom-radio-checkbox-color: #888;
26
$widget-custom-radio-checkbox-marker-color: #cbd05d;
27
$widget-unique-checkbox-position: left;
28

  
29
$title-background: $primary-color;
30
$title-weight: bold;
31
$title-font-size: 22px;
32

  
33
$cell-border: none;
34
$cell-entry-hover-background: $primary-color;
35

  
36
$button-background: #000;
37
$button-color: #fff;
38
$button-hover-background: #cbd05d;
39
$button-hover-color: #000;
40

  
41
$notification_info_color: $primary-color;
42

  
43
$buttons-order: previous (grow), cancel, submit;
44

  
45
$footer-color: #000;
46
$footer-background: #cbd05d;
47

  
48
$wcs-step-current-label-color: #000;
49
$wcs-step-marker-color: #88446b;
50
$wcs-step-border-bottom: 0;
51
$wcs-step-current-marker-color: $wcs-step-marker-color;
52

  
static/dordogne-cd24/config.json
1
{
2
  "label": "Dordogne (CD24)",
3
  "variables": {
4
    "pwa_display": "standalone",
5
    "include_top_links": false,
6
    "theme_color": "#f4f7fa",
7
    "email_header_asset": "emails:logo"
8
  },
9
  "settings": {
10
    "combo": {
11
      "COMBO_ASSET_SLOTS.update": {
12
        "emails:logo": {"label": "Emails : logo"},
13
        "emails:logo": { "label": "Emails : logo" }
14
      }
15
    }
16
  }
17
}
static/dordogne-cd24/img/facebook.svg
1
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="facebook-f" class="svg-inline--fa fa-facebook-f fa-w-10" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="currentColor" d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg>
static/dordogne-cd24/img/instagram.svg
1
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="instagram" class="svg-inline--fa fa-instagram fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>
static/dordogne-cd24/img/logo.svg
1
<svg xmlns="http://www.w3.org/2000/svg" width="61.987" height="94.813" viewBox="0 0 61.987 94.813"><defs><style>.a{fill:#565e6a;stroke:rgba(0,0,0,0);stroke-miterlimit:10;}</style></defs><g transform="translate(-176.928 -495.422)"><path class="a" d="M424.5,525.365s54.768,4.189,58.343,51.04a49.572,49.572,0,0,1-.09,9.438c-.063.61.4,1.5.323,2.123,0,0,3.171-2.468,2.161-15.387-.743-9.52-2.113-25.947-12.175-43.24,0,0,11.629-13.572,6.618-31.983,0,0-8.232,31.33-21.476,30.038C458.208,527.395,423.177,522.291,424.5,525.365Z" transform="translate(-247.028 0)"/><path class="a" d="M477.705,631.909s9.366-10.982-1.938-7.915c0,0-15.576,8.542-26.2,33.585C449.57,657.579,465.46,642.338,477.705,631.909Z" transform="translate(-260.845 -69.391)"/><path class="a" d="M494.1,537.814c-.934,2.41-4.424,3.317-7.8,2.012s-5.341-4.311-4.408-6.728,4.414-3.308,7.782-2S495.036,535.4,494.1,537.814Z" transform="translate(-278.512 -18.236)"/><path class="a" d="M440.373,579.069c9.269,1.984,20.158,4.263,28.925,9.453,11.677,5.9,16.28,17.277,16.821,28.919a34.891,34.891,0,0,0-.9-11.065c-5.194-20.616-27.045-25.725-44.829-30.128Z" transform="translate(-255.782 -43.413)"/><path class="a" d="M435.527,581.5c17.749,3.541,40.422,7.891,46.462,28.453.683,3.309,1.569,6.572,1.409,10.116-.518-11.858-8.148-23.831-19.387-28.335-8.763-3.846-18.348-6.02-28.475-7.461Z" transform="translate(-253.115 -46.304)"/></g></svg>
static/dordogne-cd24/img/twitter.svg
1
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="twitter" class="svg-inline--fa fa-twitter fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg>
static/dordogne-cd24/img/vimeo.svg
1
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="vimeo-v" class="svg-inline--fa fa-vimeo-v fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"></path></svg>
static/dordogne-cd24/img/youtube.svg
1
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="youtube" class="svg-inline--fa fa-youtube fa-w-18" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>
static/dordogne-cd24/style.scss
1
@charset "UTF-8";
2

  
3
@import 'vars';
4
@import '../includes/publik';
5
@import '../includes/font-montserrat';
6
@import 'custom';
templates/variants/dordogne-cd24/authentic2/login.html
1
{% extends "authentic2/login.html" %}
2

  
3
{% block login-top %}
4
<h1>Me connecter</h1>
5
{% endblock %}
templates/variants/dordogne-cd24/registration/registration_form.html
1
{% extends "registration/registration_form.html" %}
2

  
3
{% block registration-top %}
4
  <h1>Créer un compte</h1>
5
{% endblock %}
0
-