-
Notifications
You must be signed in to change notification settings - Fork 97
/
style.css
160 lines (156 loc) · 3.52 KB
/
style.css
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
@charset "UTF-8";
body > header {
display: block;
text-align: center;
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 5em), 0% 100%);
clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 5em), 0% 100%);
background: linear-gradient(transparent, rgba(0, 0, 0, 0.5)), url(img/header.jpg) bottom/cover;
}
body > header a {
color: inherit;
}
body > header .masthead {
display: flex;
justify-content: space-between;
}
body > header .masthead .logo img {
display: block;
}
body > header .masthead .logo img:not(:hover) {
-webkit-filter: grayscale(100%) brightness(400%);
filter: grayscale(100%) brightness(400%);
}
body > header .promo {
padding: 5em;
padding: 3em calc(50% - 16em) 5em;
font-size: 150%;
}
body > header .promo .tagline {
font-size: 280%;
line-height: 1;
margin-bottom: 0;
font-weight: 100;
}
body > header .promo p {
-webkit-hyphens: manual;
-ms-hyphens: manual;
hyphens: manual;
font-weight: 500;
}
body > header .promo .button:not(:hover) {
background: white;
color: black;
mix-blend-mode: screen;
}
body > header .promo .button:hover {
background: #82cf17;
color: white;
}
body > header nav iframe {
display: inline-block;
}
body > header nav iframe:not(:hover) {
mix-blend-mode: screen;
-webkit-filter: invert(100%);
filter: invert(100%);
}
body > header nav iframe:hover, body > header nav iframe:focus {
mix-blend-mode: luminosity;
}
#what ul {
font-size: 150%;
-webkit-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
#what a {
font-weight: 400;
}
#pros {
display: flex;
flex-flow: row wrap;
align-items: flex-start;
justify-content: center;
background: #6ec9f7;
padding: 5em calc(50vw - 525px) 6em;
-webkit-clip-path: polygon(0% 0%, 100% 4em, 100% calc(100% - 7em), 0% 100%);
clip-path: polygon(0% 0%, 100% 4em, 100% calc(100% - 7em), 0% 100%);
font-weight: 400;
margin: 0 -2rem;
}
@media (max-width: 1150px) {
#pros {
margin: 0 -1rem;
}
}
#pros article {
box-sizing: border-box;
padding: 0.4em;
}
@media (min-width: 800px) {
#pros article {
width: 50%;
}
}
#pros article h1 {
margin: 0;
color: white;
font: bold 150%/1 Didot, "Didot LT STD", "Bodoni 72", Bodoni, "Bodoni MT", "Libre Bodoni", "Hoefler Text", Cambria, Georgia, serif;
}
#pros article h1::before {
content: "✓";
display: inline-block;
vertical-align: text-bottom;
margin-right: 0.3em;
width: 1em;
background: white;
color: #6ec9f7;
border-radius: 50%;
text-align: center;
font-size: 135%;
line-height: 1;
}
#pros article a, #pros article strong {
font-weight: 900;
}
#pros article a {
color: inherit;
text-decoration: underline;
-webkit-text-decoration-color: rgba(0, 0, 0, 0.3);
text-decoration-color: rgba(0, 0, 0, 0.3);
}
.manual.example [mv-app=shopping] h1 {
margin: 0;
color: #668899;
font: bold 200% Helvetica Neue, sans-serif;
letter-spacing: -0.04em;
}
.manual.example [mv-app=shopping] ul {
padding: 0;
}
.manual.example [mv-app=shopping] li {
padding: 0.5em;
}
.manual.example [mv-app=shopping] li:not(.mv-deleted) {
display: flex;
background: #f6f8f9;
}
.manual.example [mv-app=shopping] li:not(.mv-deleted):nth-child(odd) {
background: #edf1f3;
}
.manual.example [mv-app=shopping] :checked + span {
font-style: italic;
text-decoration: line-through;
color: gray;
}
.manual.example [mv-app=shopping] label {
flex: 1;
}
.manual.example [mv-app=shopping] .mv-item-bar.mv-ui {
position: static;
pointer-events: auto;
opacity: 1;
mix-blend-mode: multiply;
border: 0;
}
/*# sourceMappingURL=style.css.map */