Projet

Général

Profil

0010-guerande-hamonize-cell-display-and-color-contrast-of.patch

Voir les différences:

Subject: [PATCH 10/11] guerande: hamonize cell display and color contrast of
 links list

 static/guerande/_custom.scss | 27 ++++++++++++---------------
 static/guerande/_vars.scss   | 11 +++++++----
 2 files changed, 19 insertions(+), 19 deletions(-)
static/guerande/_custom.scss
122 122
	}
123 123
}
124 124

  
125
#content div.wcsformsofcategorycell {
126
	@media (max-width: $mobile-limit) {
127
		margin-left: 9%;
128
		margin-right: 9%;
125
#content div.cell {
126
	@media ($max-mobile-viewport) {
127
		max-width: 600px;
128
		margin-left: auto !important;
129
		margin-right: auto !important;
129 130
	}
131
}
132

  
133
#content div.wcsformsofcategorycell,
134
#content div.link-list-cell
135
 {
130 136
	padding-bottom: 50px;
131
	border: 1px solid #d3d3d3;
132
	border-radius: 4px;
137
	padding-top: 50px;
133 138
	h2 {
134 139
		background: white;
135 140
		text-align: left;
136 141
		color: black;
137
		padding: 20px 60px 0 30px;
138
		margin: 0;
139 142
		font-weight: normal;
140
		min-height: 3.5rem;
141
		@media screen and ($max-mobile-viewport) {
142
			min-height: 2.5rem;
143
		}
144 143
	}
145 144
	&.foldable h2::after {
146 145
		width: 25px;
147 146
		height: 25px;
148 147
	}
149 148
	li a {
150
		padding: 5px 40px;
151
		color: black;
149
		padding-left: 40px;
152 150
	}
153 151
	picture {
154 152
		height: 250px;
155 153
		overflow: hidden;
156
		padding-top: 50px;
157 154
		margin: 0;
158 155
	}
159 156
	img {
static/guerande/_vars.scss
10 10
$nav-active-color: darken($primary-color, 5%);
11 11
$nav-item-selected-color: white;
12 12
$nav-item-hover-color: white;
13
$nav-mobile-limit: 1024px;
13
$mobile-limit: 1024px;
14 14
$border-radius: 0;
15
$button-background: $primary-color;
15
$button-background: lighten($primary-color, 10%);
16 16
$title-background: $primary-color;
17 17
$title-weight: bold;
18 18
$title-color: white;
19 19
$footer-background: black;
20 20
$footer-color: white;
21
$cell-entry-color: $primary-color;
21
$cell-title-cover-border: false;
22
$cell-entry-color: darken($primary-color, 20%);
22 23
$cell-entry-hover-color: black;
23
$cell-entry-hover-background: darken($primary-color, 10%);
24
$cell-entry-hover-background: lighten($primary-color, 10%);
24 25
$cell-image-position: top;
25 26
$cell-open-foldable-icon: url(img/plus.svg);
26 27
$cell-close-foldable-icon: url(img/moins.svg);
28
$cell-border-radius: 4px;
29
$cell-border: 1px solid #d3d3d3;
27 30
$link-color: white;
28 31

  
29 32
$wcs-steps-spacing: 1rem;
30
-