-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
148 lines (143 loc) · 2.42 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
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
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: inherit;
}
::-moz-placeholder {
font-family: "DM Sans", sans-serif;
}
::placeholder {
font-family: "DM Sans", sans-serif;
}
body {
font-family: "DM Sans", sans-serif;
background-color: #2f1893;
color: #fff;
padding: 2.5rem 5rem;
}
@media (max-width: 700px) {
body {
padding: 2rem 1.5rem;
}
}
body nav {
display: flex;
align-items: center;
justify-content: space-between;
}
body nav .logo {
font-size: 24px;
font-weight: 800;
}
body nav ul {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
body nav ul li {
font-size: 18px;
}
body nav ul li:nth-child(1), body nav ul li:nth-child(2) {
display: none;
}
body nav ul li button {
padding: 7px 14px;
border-radius: 80px;
border: none;
font-size: 16px;
font-family: inherit;
color: #fff;
background: #482be7;
}
body main {
margin-top: 6rem;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
@media (max-width: 700px) {
body main {
margin-top: 5rem;
}
}
body main h1 {
font-size: 60px;
text-align: center;
margin: auto;
width: 45%;
line-height: 1.2;
}
@media (max-width: 700px) {
body main h1 {
width: 100%;
}
}
body main p {
font-size: 20px;
width: 48%;
margin: auto;
margin-top: 2rem;
text-align: center;
}
@media (max-width: 700px) {
body main p {
width: 100%;
}
}
body main .input {
display: flex;
align-items: center;
justify-content: center;
width: 50%;
margin: auto;
margin-top: 3rem;
gap: 1rem;
}
@media (max-width: 700px) {
body main .input {
flex-direction: column;
width: 100%;
}
}
body main .input input {
width: 80%;
padding: 13px 14px;
border-radius: 80px;
border: none;
}
@media (max-width: 700px) {
body main .input input {
width: 100%;
}
}
body main .input button {
width: 20%;
padding: 10px 14px;
border-radius: 80px;
border: none;
font-size: inherit;
font-family: inherit;
background: #25dac5;
color: #fff;
}
@media (max-width: 700px) {
body main .input button {
width: 90%;
}
}
body main span {
color: rgba(255, 255, 255, 0.431372549);
margin-top: 1.5rem;
font-size: 13px;
text-align: center;
}/*# sourceMappingURL=index.css.map */