UNPKG

1.12 kBSCSSView Raw
1@import "./gift-or-not-selection";
2@import "./email-address-list";
3@import "./footnote";
4@import "./custom-message";
5
6.email-article {
7
8 background-color: #fdf8f2;
9 color: #333333;
10 font-family: oFontsGetFontFamilyWithFallbacks(MetricWeb);
11
12 &.email-article--open {
13 max-height: 920px;
14 transition: max-height 0.5s ease-in;
15 overflow: hidden;
16 }
17
18 &.email-article--closed {
19 max-height: 0;
20 transition: max-height 0.5s ease-out;
21 overflow: hidden;
22 }
23
24 .email-article__border {
25 border: solid 1px #cec6b9;
26 }
27
28 .email-article__close {
29 float: right;
30 margin: 8px 8px 0 0;
31 border: 0;
32 padding: 0;
33
34 i {
35 @include oIconsGetIcon('cross', #333333, 32);
36 text-indent: 100%;
37 overflow: hidden;
38 }
39 }
40
41 .email-article__container {
42 padding: $spacing-unit;
43 }
44
45 .email-article__title {
46 font-size: 20px;
47 font-weight: normal; // overrides user agent's default styling
48 margin: 0 0 20px;
49 }
50
51 .email-article__section-break {
52 border-top: solid 1px #c0b0a4;
53 }
54
55 .email-article__submit {
56 width: 100%;
57 margin: ($spacing-unit * 1.5) 0 $spacing-unit;
58 text-transform: none;
59 font-size: 16px;
60 }
61
62}