15
15
flex-direction : column;
16
16
justify-content : center;
17
17
align-items : center;
18
+ flex-wrap : wrap;
19
+
20
+ }
21
+
22
+ .hero-button-container {
23
+ display : flex;
24
+ gap : 1rem ;
25
+ flex-direction : column;
26
+ justify-content : center;
27
+ align-items : stretch;
28
+ position : relative;
29
+ width : auto;
30
+ flex-wrap : wrap;
31
+ }
32
+
33
+ .hero-button-container .manual {
34
+ display : flex;
35
+ gap : 0.4rem ;
36
+ flex-direction : column;
37
+ justify-content : center;
38
+ align-items : stretch;
18
39
}
19
40
20
41
.hero-quote {
31
52
margin-bottom : 4rem ;
32
53
}
33
54
34
- @media (min-width : 768px ) {
35
- .hero-title h1 {
36
- font-size : 5rem ;
37
- }
38
- }
39
-
40
55
.yellow-text {
41
56
color : # ffe336 ;
42
57
}
43
58
44
59
.hero-button {
60
+ display : inline;
61
+ width : 100% ;
45
62
background : # fff ;
46
63
color : # 0a0a19 ;
47
- box-shadow : 4px 4px # 6a6a6a ;
48
64
transition : background-color 200ms ;
65
+ border : none;
49
66
font-size : 1rem ;
67
+ font-weight : 500 ;
50
68
padding : 1rem ;
51
69
border-radius : 0.5rem ;
70
+ cursor : pointer;
71
+ transition : 0.1s ;
52
72
}
53
73
54
74
.discord-button {
55
75
background-color : # 272a2f ;
56
- box-shadow : 4px 4px # 6a6a6a ;
76
+ box-shadow : 0px 4px # 3a3a3a ;
77
+ border : none;
57
78
transition : background-color 200ms ;
58
79
font-size : 1rem ;
59
- padding : 1rem ;
60
- border-radius : 0.5rem ;
80
+ padding : 1rem 1.5rem ;
81
+ font-weight : bold;
82
+ width : 100% ;
61
83
display : flex;
62
84
justify-content : center;
63
85
gap : 6px ;
64
86
align-items : center;
87
+ cursor : pointer;
88
+ transition : 0.1s ;
89
+ border-radius : 50px ;
90
+ }
91
+
92
+ .left-button {
93
+ border-radius : 50px ;
94
+ box-shadow : 4px -6px 8px rgba (256 , 256 , 256 , 0.2 );
95
+ }
96
+
97
+ .right-button {
98
+ border-radius : 50px ;
99
+ box-shadow : -4px 6px 8px rgba (256 , 256 , 256 , 0.2 );
100
+ }
101
+
102
+ @media (min-width : 768px ) {
103
+ .hero-title h1 {
104
+ font-size : 5rem ;
105
+ }
106
+
107
+ .hero-button {
108
+ padding : 1rem 1.5rem ;
109
+ }
110
+
111
+ .hero-button-container .manual {
112
+ flex-direction : row;
113
+ }
114
+
115
+ .left-button {
116
+ border-radius : 50px 0 0 50px ;
117
+ box-shadow : -6px 4px 8px rgba (256 , 256 , 256 , 0.2 );
118
+ }
119
+
120
+ .right-button {
121
+ border-radius : 0 50px 50px 0 ;
122
+ box-shadow : 6px 4px 8px rgba (256 , 256 , 256 , 0.2 );
123
+ }
65
124
}
66
125
67
126
.discord-button p {
72
131
.discord-icon {
73
132
color : # 7289d7 ;
74
133
transition : color 200ms ;
134
+ font-size : 1.5rem ;
135
+ margin-right : 0.5rem ;
75
136
}
76
137
77
138
.hero-button : hover {
78
139
background-color : rgba (256 , 256 , 256 , 0.8 );
140
+ transform : scale (1.04 );
79
141
cursor : pointer;
80
142
}
81
143
82
144
.discord-button : hover {
83
145
cursor : pointer;
84
146
background-color : # 7289d7 ;
147
+ transform : scale (1.04 );
85
148
}
86
149
87
150
.discord-button : hover .discord-icon {
105
168
max-width : 100% ;
106
169
height : auto;
107
170
margin : 0 ;
108
- }
109
-
110
- .hero-button-container {
111
- display : flex;
112
- flex-direction : row;
113
- justify-content : center;
114
- align-items : center;
115
- gap : 1rem ;
116
- flex-wrap : wrap;
117
- }
171
+ }
0 commit comments