-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (109 loc) · 1.67 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
@import './styles/var.css';
@import './styles/reset.css';
#appStoreButton,
#playMarketButton,
#websiteButton {
display: none;
}
#appStoreButton > img {
width: 48px;
}
main {
width: 100%;
max-width: 600px;
height: 100%;
padding-top: 40px;
position: relative;
background: linear-gradient(90deg, #e0f7fa, #fff8dc);
}
.demo {
width: 100%;
height: 100%;
object-fit: contain;
}
section {
padding: 32px 16px 16px;
position: absolute;
bottom: 0;
right: 0;
left: 0;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 16px;
background: var(--light);
box-shadow: 0px -16px 16px -8px rgba(34, 60, 80, 0.4);
border-top: 1px solid grey;
border-radius: 12px 12px 0 0;
}
h1 {
font-size: 32px;
font-weight: 700;
letter-spacing: -1px;
line-height: 1.5;
}
h2 {
font-size: 22px;
font-weight: 500;
letter-spacing: 0;
line-height: 1.5;
}
a {
width: 80%;
padding: 16px 0;
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
text-decoration: none;
background-color: var(--dark);
border-radius: 16px;
box-shadow: var(--shadow);
}
a > img {
width: 40px;
height: 40px;
object-fit: contain;
}
label {
height: 40px;
font-size: 16px;
font-weight: 500;
letter-spacing: 0;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
}
span {
display: block;
line-height: 2;
font-size: 16px;
}
label,
span {
color: var(--light);
}
@media only screen and (max-width: 768px) {
main {
padding-top: 16px;
}
section {
padding-top: 16px;
}
h1 {
font-size: 28px;
}
h2 {
font-size: 18px;
}
label {
height: 40px;
font-size: 16px;
}
span {
font-size: 12px;
}
}