-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.scss
117 lines (98 loc) · 1.87 KB
/
app.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Material Theming
$mdc-theme-primary: #182870;
$mdc-theme-on-primary: #f55356;
$mdc-typography-font-family: unquote("'Questrial', sans-serif;");
$mdc-typography-styles-headline1: (
font-family: unquote("'Major Mono Display', monospace"),
);
$mdc-typography-styles-headline2: (
font-family: unquote("'Questrial', sans-serif;")
);
$mdc-typography-styles-headline3: (
font-family: unquote("'Major Mono Display', monospace"),
);
$mdc-typography-styles-body1: (
font-size: 1.25rem,
line-height: 2rem,
);
// Import the styles for each MDC Web component
@import "@material/typography/mdc-typography";
@import "@material/button/mdc-button";
body {
background: rgb(248,200,160);
background: linear-gradient(180deg, rgba(248,200,160,1) 25%, rgba(240,160,168,1) 100%);
color: #182870;
}
.container {
max-width: 720px;
margin: auto;
padding: 0 16px 32px;
}
h1 {
@include mdc-typography(headline1);
font-variant-caps: all-small-caps;
margin-top: 56px;
}
h2 {
@include mdc-typography(headline2);
color: #00aa9a;
}
h3 {
@include mdc-typography(headline3);
}
p {
@include mdc-typography(body1);
}
@media (min-width:150px) {
h1 {
font-size: 5rem;
line-height: 4rem;
}
h2 {
font-size: 2.5rem;
line-height: 2.5rem;
}
h3 {
font-size: 2rem;
line-height: 2rem;
}
}
@media (min-width:575px) {
h1 {
font-size: 8rem;
line-height: 6rem;
}
h2 {
font-size: 3.75rem;
line-height: 3.75rem;
}
h3 {
font-size: 3rem;
line-height: 3.125rem;
}
}
a {
color: #f55356;
font-weight: bold;
text-decoration: none;
}
a.typeform-share {
text-decoration: none;
}
.foo-button {
font-weight: bold;
margin: 24px auto;
}
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
//padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}