forked from mezzLMC/strayder-landing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcta.css
More file actions
115 lines (104 loc) · 2.05 KB
/
Copy pathcta.css
File metadata and controls
115 lines (104 loc) · 2.05 KB
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
.cta {
display: flex;
flex-direction: column;
width: fit-content;
margin-top: 10%;
margin-left: 150px;
height: fit-content;
font-size: var(--font-size-xl);
}
.use-the-latest1 {
margin: 0;
color: var(--color-lightgray);
}
.subtitle {
font-size: var(--font-size-5xl);
letter-spacing: -0.04em;
display: inline-block;
margin-top: 0;
}
.cta-text {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
text-align: left;
font-size: var(--font-size-61xl);
}
.license {
font-size: var(--font-size-xl);
letter-spacing: -0.04em;
font-weight: 600;
font-family: var(--font-inter);
color: var(--color-white);
text-align: center;
display: inline-block;
width: 9.75rem;
height: 1.5rem;
}
.discord {
position: relative;
letter-spacing: -0.04em;
text-decoration: none;
color: white;
width: 11.25rem;
height: 3.5rem;
border-radius: var(--br-3xs);
line-height: 3.5rem;
}
.actions {
display: flex;
margin-top: 20px;
flex-direction: row;
align-items: center;
width: max-content;
justify-content: center;
gap: var(--gap-13xl);
}
.title {
line-height: 5.63rem;
display: block;
width: 21.93rem;
}
@media screen and (max-width: 960px) {
.cta {
margin-left: 0;
}
.cta-text {
text-align: center;
}
.title {
margin: auto;
font-size: 5rem;
}
.actions {
flex-direction: column;
margin-left: auto;
margin-right: auto;
}
.actions button, .actions a {
width: 11.25rem;
}
.use-the-latest1 br{
display: none;
}
}
button:disabled,
button[disabled] {
cursor: not-allowed;
}
button:disabled div {
text-decoration: line-through;
}
@media screen and (max-width: 420px) {
.title {
line-height: 4rem;
font-size: 3.5rem;
}
.subtitle {
font-size: 1.5rem;
}
.actions button, .actions a {
width: calc(100vw - 20px);
}
}