Socialify

Folder ..

Viewing style.css
269 lines (235 loc) • 4.3 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/* No padding for Columns, removing gutter spaces */

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
 }

/* Changing the navbar default color to white */

.bg-light {
    /* Using important to override predefined bootstrap class */
    background-color: #fff !important; 
}

/* Custom call to action button */

.cta-btn {
    background-color: #2772B8;
    border: none;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}
.cta-btn:hover {
    background-color: #175897;
}

/* Custom phone call button */

.btn-call {
    background-color: transparent;
    border: none;
    margin: 0px 40px 0px 20px;
    font-size: 14px;
    outline: none;
}
.btn-call:hover {
    color: #55ADE1;
    cursor: pointer;
}

/* Custom search button */

.inputBtn {
    background-color: #2772B8;
    border: none;
    font-size: 12px;
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 15px 10px;
    border-radius: 2px;
    outline: none;
}
.inputBtn:hover {
    background-color: #175897;
    cursor: pointer;
}
.inputBtn:focus {
    outline: none;
}


/* Custom ticket button */

.btn-ticket {
    width: 100%;
    border: none;
    background-color: #000;
    color: white;
    font-weight: 100;
    padding: 10px 0px;
    font-size: 14px;
}
.btn-ticket:hover {
    background-color: #2772B8;
    color: white;
}

/* Changing Navbar fonts */

.navbar-nav li a {
    color: black !important;
    font-size: 16px;
    margin: 0px 5px;
}

/* Changing dropdown menu style of bootstrap */

.dropdown-menu {
    border: none;
    border-radius: 0px;
}
.dropdown-item {
    padding: 10px 10px;
    font-size: 14px !important;
}
.dropdown-item:hover {
    color: #55ADE1 !important;
    background-color: transparent;
}

/* Custom Font Classes */

.jb-bold {
    color: white;
    font-size: 50px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    z-index: 2;
    position: relative;
    margin: 30px 0px 50px 0px;
}
.upcoming {
    text-align: center;
    font-weight: 300;
}
.ticket-bold {
    text-align: center;
    font-weight: 900;
    font-size: 40px;
    margin: 40px 0px;
}
.center {
    text-align: center;
}
.center button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    margin: 0px 0px 40px 0px;
}

/* Jumbotron and Blackish Tint */

.jumbotron {
    background-image: url(images/1.jpg);
    position: relative;
}
.tint {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Custom Inputs */

.customInput {
    position: relative;
    z-index: 2;
    outline: none;
    width: 100%;
    padding: 15px 10px;
    border-radius: 2px;
    border: none;
    font-size: 12px;
    margin-bottom: 30px;
}

/* Custom Background for ticket container */

.bg-lightgrey {
    background-color: #F5F8FA;
    margin-top: -35px;
}

/* Margins and paddings*/

.padding-50 {
    padding-top: 50px;
}
.padding-topdown-50 {
    padding: 50px 0px;
}
.padding-100 {
    padding: 100px 0px;
}


/* Card Styles */

.card-title {
    font-size: 16px;
    font-weight: 700;
}
.card-title:hover {
    color: #55ADE1;
    cursor: pointer;
}
.card-body ul {
    list-style: none;
    padding-left: 0;
}
.card-body ul li {
    font-size: 12px;
    color: #5c5c5c;
}
.ic-round-cal {
    color: white;
    background-color: #5c5c5c;
    border-radius: 50%;
    padding: 5px;
}
.ic-round-venue {
    color: white;
    background-color: #5c5c5c;
    border-radius: 50%;
    padding: 5px 6px;
    margin-top: 5px;
}

/* Footer */

.footer {
    background-color: #151515;
}
.footerTitle {
    color: rgb(89, 183, 230);
    font-size: 12px;
}
.footerLink {
    color: white;
    font-size: 11px;
    display: block;
}
.footerLink:hover {
    color: white;
}
.footericons i {
    color: white;
    font-size: 24px;
    padding: 0px 5px;
}
.white-footer-text {
    color: rgb(230, 230, 230);
    font-size: 10px;
}
.white-footer-text img {
    width: 120px;
    padding: 0px 10px;
    margin-top: -5px;
}

/* Horizontal Rule */

.white-ruler {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #fff;
    margin: 1em 0;
    padding: 0; 
}

/* Center Image */

.center-image {
    text-align: center;
}
.center-image img {
    height: 70px;
    padding: 20px;
}