Projet

Général

Profil

0001-bring-small-fixes-to-la-baule-theme-57812.patch

Paul Marillonnet, 18 janvier 2022 11:13

Télécharger (2,05 ko)

Voir les différences:

Subject: [PATCH] bring small fixes to la-baule theme (#57812)

 static/la-baule/_custom.scss | 24 +++++++++++++++++++++---
 static/la-baule/_vars.scss   | 10 +++++-----
 2 files changed, 26 insertions(+), 8 deletions(-)
static/la-baule/_custom.scss
1
@import '../includes/fonts/montserrat-alternates';
2

  
1 3
//
2 4
//	Components
3 5
//
......
175 177
		p {
176 178
			line-height: 1.3;
177 179
		}
180
		p:first-of-type {
181
			font-family: "Montserrat Alternates";
182
			font-size: 21pt;
183
			font-weight: bold;
184
			font-style: italic;
185
		}
178 186
	}
179 187

  
180 188
	div.searchcell form {
......
239 247
		margin: 0;
240 248
	}
241 249
	& &--title {
242
		font-size: $fz-h3;
250
		font-size: $fz-h2;
243 251
		margin-left: -1.5rem;
244 252
	}
245 253
	& &--subtitle {
246
		font-size: $fz-h4;
254
		font-size: $fz-h3;
247 255
	}
248 256
	& &--list {
249 257
		list-style-type: none;
......
276 284

  
277 285
.right-icon {
278 286
	// $image-width: #{$title-font-size + 1.4};
279
	$image-width: 3.15rem;
287
	$image-width: 4.15rem;
280 288
	.gru-content &.cell {
281 289
		// Picture position
282 290
		&.has-asset-picture {
......
344 352
	.link-list-cell {
345 353
		@extend .right-icon;
346 354
	}
355
	.wcs-forms-of-category-cell {
356
		h2:first-child {
357
			font-size: 24pt;
358
			padding-top: .7em;
359
			padding-bottom: .45em
360
		}
361
		div.links-list ul > li > a {
362
			font-size: 20pt;
363
		}
364
	}
347 365
}
348 366

  
349 367
#main-content div.text-cell > div {
static/la-baule/_vars.scss
7 7
$gray: #e1e1e6;
8 8

  
9 9
// fonts size
10
$fz-h1: 72px;
11
$fz-h2: 42px;
12
$fz-h3: 36px;
13
$fz-h4: 1.75em;
14
$fz-small: 0.85em;
10
$fz-h1: 50pt;
11
$fz-h2: 30pt;
12
$fz-h3: 20pt;
13
$fz-h4: 1.15em;
14
$fz-small: 0.65em;
15 15

  
16 16
$header-width: 1680px;
17 17

  
18
-