Skip to content

Commit eac9e2a

Browse files
committed
Add marketing redesign landing content and styles
1 parent 474af4a commit eac9e2a

17 files changed

Lines changed: 318 additions & 43 deletions

File tree

Lines changed: 3 additions & 0 deletions
Loading
7.54 KB
Loading
3.97 KB
Loading
2.61 KB
Loading
5.34 KB
Loading
3.4 KB
Loading

app/assets/stylesheets/marketing_redesign/app.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
/* Components */
2020
/* Import components from the component folder here in ABC order */
2121
/* For example: @import "marketing_redesign/components/_card.css" */
22+
@import "marketing_redesign/components/_benefits.css";
23+
@import "marketing_redesign/components/_outcomes.css";
2224
@import "marketing_redesign/components/_section.css";
25+
@import "marketing_redesign/components/_testimonial.css";
2326

2427
/* Utilities */
2528
@import "marketing_redesign/utilities/_hide-visually.css";

app/assets/stylesheets/marketing_redesign/base/_buttons.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.button {
22
align-items: center;
33
border: var(--border-width--base) solid transparent;
4-
border-radius: var(--border-radius--base);
4+
border-radius: var(--border-radius--small);
55
cursor: pointer;
66
display: flex;
77
font-size: var(--font-size--ui);
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
body {
22
background-color: var(--color--background-base);
3+
padding: 0 var(--space--large);
34
}
45

56
body > * {
6-
max-width: var(--container--base);
77
margin: auto;
8+
max-width: var(--container--medium);
89
}

app/assets/stylesheets/marketing_redesign/base/_typography.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ body {
1313

1414
:where(h1, h2, h3, h4, strong) {
1515
font-weight: var(--font-weight--extrabold);
16+
letter-spacing: -0.05rem;
1617
}
1718

1819
:where(h1, h2, h3, h4) {
@@ -42,29 +43,28 @@ h4 {
4243
}
4344

4445
p {
45-
margin: var(--space--small) 0 var(--space--xx-small);
4646
font-size: var(--font-size--body);
47+
margin: var(--space--small) 0 var(--space--xx-small);
4748
}
4849

49-
p.text-xl {
50+
:is(p, q).text-xl {
5051
font-size: var(--font-size--500);
5152
margin: var(--space--base) 0 var(--space--small);
52-
font-weight: var(--font-weight--bold);
5353
}
5454

55-
p.text-lg {
55+
:is(p, q).text-lg {
5656
font-size: var(--font-size--subheader);
5757
margin: var(--space--small) 0 var(--space--xx-small);
58-
font-weight: var(--font-weight--bold);
5958
}
6059

61-
p.text-sm {
60+
:is(p, q).text-sm {
6261
font-size: var(--font-size--small);
6362
margin: var(--space--xx-small) 0 0;
6463
}
6564

6665
a {
6766
color: var(--color--link);
67+
6868
transition: var(--transition-duration--base) color
6969
var(--transition-timing--base);
7070

0 commit comments

Comments
 (0)