-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinput.css
67 lines (54 loc) · 1 KB
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
body {
font-family:"Inter",sans-serif;
background-image: linear-gradient(to bottom right, #bec1ff53, #fcae9497);
}
p {
font-size:18px;
}
a {
text-decoration-style: wavy;
color: #dc4523ba;
text-decoration-line: underline;
text-underline-offset: 2px;
font-weight: 400;
}
a:hover {
text-decoration-style: wavy;
color: #dc4523;
text-decoration-line: underline;
text-underline-offset: 3px;
font-weight: 600;
}
footer {
text-align: center;
}
.hero-title {
font-weight:600;
line-height:1;
}
.half {
width: 395px;
}
.footer {
padding: 35px;
font-weight: 600;
}
@media (max-width: 768px) {
.hero-title {
font-size:44px;
}
}
@media (min-width: 768px) {
.hero-title {
font-size:54px;
}
}
@media (min-width: 1024px) {
.hero-title {
font-size:60px;
}
}