-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (108 loc) · 1.92 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
:root {
font-family: InterVariable, Inter, sans-serif;
font-feature-settings: "liga" 1, "calt" 1;
font-variation-settings: "opsz" 32;
}
html {
display: flex;
box-sizing: border-box;
padding: 100px;
min-height: 100dvh;
justify-content: center;
align-content: space-between;
}
body {
display: flex;
box-sizing: border-box;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 100px;
background: linear-gradient(180deg, #08F 0%, #7AC1FF 100%), #08f;
max-width: 750px;
padding: 0;
margin: 0;
color: white;
}
#text {
display: flex;
flex-direction: column;
gap: 50px;
margin-bottom: 25px;
text-align: center;
}
h1 {
font-size: 64px;
font-weight: 600;
line-height: 1;
letter-spacing: -0.02em;
margin: 0;
}
p {
font-size: 24px;
font-weight: 400;
line-height: 1.5;
margin: 0;
}
#links {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.button {
display: flex;
align-items: center;
justify-content: center;
gap: 1em;
box-sizing: border-box;
background: white;
border-radius: 9999px;
box-shadow: 0px -2px 4px 0px rgba(0, 136, 255, 0.50) inset, 0px 0px 2px 0px #FFF inset, 0px 0px 2px 0px rgba(255, 255, 255, 0.50) inset, 0px 2px 2px 0px rgba(0, 34, 153, 0.25);
padding: 10px 20px;
height: 40px;
color: #111;
font-weight: 500;
text-decoration: none;
}
.button .symbol {
font-size: 18px;
}
.symbol {
display: inline-flex;
align-items: center;
justify-content: center;
height: 1em;
width: 1em;
flex-shrink: 0;
}
.symbol svg {
scale: calc(4/3);
height: 100%;
width: 100%;
}
.symbol svg path {
fill: #111;
}
@media only screen and (max-width: 900px) {
html {
padding: 50px;
}
body {
gap: 25px;
}
h1 {
font-size: 32px;
text-wrap: balance;
}
p {
font-size: 16px;
text-wrap: balance;
}
#text {
gap: 25px;
max-width: 500px;
}
.button {
width: 100%;
}
}