-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
103 lines (85 loc) · 1.54 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
html, body {
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6, p, button, input[type="text"] {
color: #1A1921;
font-family: 'Inter', sans-serif;
}
h1{
font-family: Inter;
font-size: 22px;
font-style: normal;
font-weight: 800;
line-height: 38px;
letter-spacing: -0.05em;
text-align: center;
}
h2{
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px;
letter-spacing: 0em;
text-align: center;
}
p{
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: 0em;
text-align: center;
}
button{
background: white;
border: none;
border-radius: 8px;
}
input[type="text"]{
border-radius: 8px;
border:none;
}
.rows{
display:flex;
}
.container{
border-radius: 32px;
margin: 32px 0;
max-width: 900px;
min-width: 700px;
overflow: hidden;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.items-center{
display:flex;
flex-direction: column;
align-items: center;
}
.sm-padding{
padding: 8px;
}
.background-gradient{
background: linear-gradient(#2B75EC, #2EC4DE);
}
.fs-xl{
font-family: Inter;
font-size: 98px;
font-style: normal;
font-weight: 800;
line-height: 24px;
letter-spacing: 0em;
text-align: center;
}
.text-white{
color:#FFF;
}
.text-accent{
color: #D2D2D2;
}
.spacing{
padding: 48px;
}