-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwithSpecialEvent.css
159 lines (150 loc) · 3.04 KB
/
withSpecialEvent.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
:root{
--primary: #0e3547;
--light: #fff;
--warning: rgb(164, 98, 98)f;
}
/****************
#Custom CSS
*******************/
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Poppins', sans-serif;
}
a{
text-decoration: none!important;
}
.container{
max-width: 1200px;
margin: auto;
overflow: auto;
}
.sports{
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 340px;
}
.sports img{
width: 100%;
height: 360px;
}
.sports_section{
padding-top: 100px;
}
.special_event_section{
padding-top: 100px;
}
.special_events{
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 340px;
}
.special_events img{
width: 100%;
height: 360px;
}
.desc{
padding: 15px;
text-align: center;
height: 80px;
}
/**********************
#Header CSS
*********************/
header{
position: absolute;
z-index: 99999;
width: 100%;
}
header .nav-item .nav-link{
font-size: 14px;
color: var(--light);
font-weight: 600;
margin-left: 20px
}
.navbar-toggler{
outline: none!important;
border: none!important;
color: var(--warning);
box-shadow: none!important;
border-radius: none!important;
}
/*****************************
#Hero Section
*******************************/
.hero{
width: 100%;
}
.hero .carousel-item img{
height: 710px;
width: 100px;
background-size: cover!important;
background-position: center;
background-repeat: no-repeat;
}
.hero .carousel-item::before{
content: '';
background-color: black;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: .8;
}
.hero .carousel-container{
display: flex;
justify-content: center;
align-items: center;
top: 0;
bottom: 0;
left: 0;
right: 0;
position: absolute;
}
.hero .carousel-content-container{
text-align: center;
color: var(--light);
}
.hero .carousel-content-container h2{
font-family: 'Abril Fatface', cursive;
font-size: 50px;
}
.hero .carousel-content-container {
width: 70%;
text-transform: capitalize;
font-size: 14px;
margin: 0 auto 30px auto;
}
.buttons .button1{
font-weight: 600;
font-size: 14px;
letter-spacing: 1px;
text-transform: capitalize;
display: inline-block;
padding: 12px 30px;
line-height: 1px;
margin: 10px 10px;
color: var(--light);
border: 1px solid var(--light);
border-radius: 50px;
}
@media(max-width:768px)
{
.hero .carousel-content-container h2{
font-size: 35px;
}
.hero .carousel-content-container {
font-size: 13px;
}
.buttons .button1{
font-size: 13px;
padding: 9px 30px;
}
}