-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
245 lines (219 loc) · 4.01 KB
/
styles.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/* -----
Imported
---- */
/* Common style */
body{
font-family: 'Poppins', sans-serif;
margin: 0px;
padding: 0px;
font-weight: 400;
font-size: 16px;
}
.link{
padding: 10px 24px 10px 24px;
text-decoration: none;
background-color: #E02C6D;
color: #FFFFFF;
}
.link>i {
padding: 0 10px;
}
.title-sec{
text-align: center;
margin-top: 60px;
}
/* ------Header Css
---- */
header{
background-color: #2D25A0;
}
.navbar{
display: flex;
justify-content: space-between;
padding: 42px 124px 49px 156px;
}
.nav-half a{
text-decoration: none;
color: #FFFFFF;
font-weight: 500;
padding: 10px 36px 10px 0px;
}
/* -----------
header info and banner
------------------ */
.header-container{
display: flex;
color: #FFFFFF;
align-items: center;
margin-bottom: 70px;
padding: 0px 140px 86px 156px;
}
.header-info h1{
font-size: 64px;
font-weight: 700;
padding-right: 102px;
}
.header-banner>img{
height: 438px;
}
/*add transform and transition in header */
.header-banner:hover{
transition: transform 2s;
transform: scale(0.8) rotate(45deg);
}
/* ------------
Section Styless
----------
*/
.players{
display: grid;
grid-column-gap: 30px;
grid-row-gap: 27px;
grid-template-columns: repeat(3,1fr);
margin: 0px 210px 0px 180px;
}
.player{
height: 475px;
width: 330px;
padding: 15px;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.player h3{
margin-top: 16px;
margin-bottom: 10px;
font-weight: 700;
font-size: 28px;
}
.player-pic img{
width: 328px;
height: 260px;
}
.player-about{
width: 100%;
margin-bottom: 33px;
font-size: 16px;
color: #6C6C6C;
}
/* ---------
Extra
----------
*/
.menu-name{
background: linear-gradient(90deg, rgba(45,37,160,1) 49%, rgba(159,82,12,0) 100%);
color: white;
padding: 25px;
}
.videos{
margin: 60px 156px 158px 182px;
display: grid;
grid-template-columns: repeat(3,1fr);
grid-column-gap: 30px;
}
.video{
width: 328px;
height: 260px;
padding: 15px;
margin-bottom: 70px;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.match-text{
font-size: 18px;
color: #6C6C6C;
margin-top: 25px;
margin-bottom: 20px;
}
.sponser{
display: flex;
align-items: center;
justify-content: center;
}
.sponser img{
width: 30px;
height: 30px;
border: 1px blue solid;
border-radius: 50%;
}
/*-----------
Foooter
--------- */
.footer-container{
margin: 50px 0px 150px;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-logo img{
width: 483.87px;
height: 110px;
}
.footer-icon{
margin: 10px 0px;
}
.footer-icon a{
height: 32px;
width: 32px;
margin:0px 7px;
padding: 10px;
border-radius: 50%;
background-color: rgba(128, 128, 128, 0.322);
}
.footer-copyright{
font-size: 18px;
}
/*-------------
Media Query For Responsivee
--------
*/
@media (max-width:700px)
{
.navbar{
display: none;
}
.header-container {
flex-direction: column;
margin: 0px 16px 47px 15px;
padding: 0px;
}
.header-info h1{
margin-left: 15px;
width: 278px;
text-align: left;
font-size: 36px;
padding: 121px 66px 30px 16px;
}
.header-info a{
padding-left: 15px;
margin-left: 25px;
}
.header-banner img{
width: 329px;
height: 259.17px;
margin: 0px;
padding-top: 50px;
padding-bottom: 61px;
}
.players{
display: grid;
grid-template-columns: repeat(1,1fr);
margin: 20px 0px 20px 12px;
}
.player{
height: 475px;
width: 330px;
padding: 15px;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.videos{
display: grid;
grid-template-columns: repeat(1,1fr);
margin: 20px 0px 20px 10px;
}
.footer-logo img{
margin-bottom:29px;
width: 125px;
height: 29px;
}
.footer-copyright p{
margin-top: 20px;
}
}