Skip to content

Commit b0830c8

Browse files
committed
Consistency with guides
1 parent fe2a630 commit b0830c8

17 files changed

+519
-135
lines changed

css/cards.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ textarea {
5353
margin-bottom: 0.5em;
5454
}
5555

56+
textarea {
57+
resize: none;
58+
box-sizing: border-box;
59+
width: 95%;
60+
}
61+
62+
textarea.auto-resize {
63+
overflow: hidden;
64+
}
65+
5666
b.card-basic {
5767
padding: 0.3em 0.5em 0.3em 0.5em;
5868
}
@@ -162,4 +172,7 @@ img.chevron {
162172
display: inline-block;
163173
max-width: 100%;
164174
}
175+
textarea {
176+
width: 100%;
177+
}
165178
}/*# sourceMappingURL=cards.css.map */

css/cards.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/cards.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ textarea {
4949
margin-bottom: 0.5em;
5050
}
5151

52+
textarea {
53+
resize: none;
54+
box-sizing: border-box;
55+
width: 95%;
56+
}
57+
58+
textarea.auto-resize {
59+
overflow: hidden;
60+
}
61+
5262
b.card-basic {
5363
padding: 0.3em 0.5em 0.3em 0.5em;
5464
}
@@ -161,4 +171,8 @@ img.chevron {
161171
display: inline-block;
162172
max-width: 100%;
163173
}
174+
175+
textarea {
176+
width: 100%;
177+
}
164178
}

css/guideColors.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
strong {
2-
color: #E3B2DA;
2+
color: #e3b2da;
33
}
44

55
body {
@@ -12,9 +12,9 @@ body {
1212
}
1313

1414
.sidebar .active::before {
15-
background-color: #E3B2DA !important;
15+
background-color: #e3b2da !important;
1616
}
1717

1818
textarea {
19-
border-color: #E3B2DA !important;
19+
border-color: #e3b2da !important;
2020
}/*# sourceMappingURL=guideColors.css.map */

css/guideColors.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
strong {
2-
color: #E3B2DA;
2+
color: #e3b2da;
33
}
44

55
body {
@@ -12,9 +12,9 @@ body {
1212
}
1313

1414
.sidebar .active::before {
15-
background-color: #E3B2DA !important;
15+
background-color: #e3b2da !important;
1616
}
1717

1818
textarea {
19-
border-color: #E3B2DA !important;
19+
border-color: #e3b2da !important;
2020
}

css/images.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
display: flex;
2828
border-radius: 6pt;
2929
transition: all 0.4s;
30+
pointer-events: none;
3031
}
3132

3233
.image-container:hover .resize-overlay,
@@ -82,6 +83,7 @@
8283

8384
.logo-container {
8485
display: flex;
86+
justify-content: space-between;
8587
}
8688

8789
.logo-container img {

css/images.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/images.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
display: flex;
2828
border-radius: 6pt;
2929
transition: all 0.4s;
30+
pointer-events: none;
3031
}
3132

3233
.image-container:hover .resize-overlay,
@@ -81,7 +82,8 @@
8182
}
8283

8384
.logo-container {
84-
display: flex;
85+
display: flex;
86+
justify-content: space-between;
8587
}
8688

8789
.logo-container img {

css/styles.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,20 @@ h3 {
5959
line-height: 1.25em;
6060
}
6161

62+
#logoBig {
63+
display: flex;
64+
flex-direction: column;
65+
justify-content: center;
66+
align-items: center;
67+
}
68+
69+
#logoBig img {
70+
width: 100%;
71+
max-width: 220px;
72+
margin: 0;
73+
padding: 0;
74+
}
75+
6276
.flex {
6377
display: flex;
6478
}
@@ -251,6 +265,9 @@ textarea {
251265
}
252266
.content {
253267
padding: 4px;
268+
width: 100%;
269+
min-width: 0;
270+
overflow-x: hidden;
254271
}
255272
.width-90 {
256273
max-width: 100% !important;
@@ -264,4 +281,44 @@ textarea {
264281
.width-40 {
265282
max-width: 70% !important;
266283
}
284+
#logoBig {
285+
display: none;
286+
}
287+
.container {
288+
min-width: 100%;
289+
overflow-x: hidden;
290+
}
291+
}
292+
@media only screen and (max-width: 470px) {
293+
.container {
294+
min-width: 100%;
295+
overflow-x: hidden;
296+
}
297+
.content {
298+
padding: 4px;
299+
width: 100%;
300+
min-width: 0;
301+
margin-left: 0;
302+
margin-right: 0;
303+
overflow-x: hidden;
304+
}
305+
.card,
306+
.card-red,
307+
.card-yellow,
308+
.card-green,
309+
.image-slider {
310+
max-width: 100%;
311+
overflow-x: hidden;
312+
}
313+
.image-container,
314+
.slider-container {
315+
max-width: 100% !important;
316+
}
317+
.slider-img {
318+
max-width: 100%;
319+
height: auto;
320+
}
321+
textarea {
322+
max-width: 95%;
323+
}
267324
}/*# sourceMappingURL=styles.css.map */

css/styles.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)