bootstrap_bux 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,792 @@
1
+ /* typography */
2
+
3
+ @charset "UTF-8";
4
+ @import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;600");
5
+ @import url("https://assets.bux.osu.edu/bux-icons/bux-icons.css");
6
+ @import url("https://s3.amazonaws.com/assets.bux.osu.edu/bux-webfonts2/bux-webfonts2.css");
7
+
8
+ /* general body and link style */
9
+
10
+ body {
11
+ background-color: #ffffff;
12
+ color: #000000;
13
+ font-family: "BuckeyeSans", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
14
+ }
15
+
16
+ .bux-link {
17
+ font-family: inherit;
18
+ text-decoration: none;
19
+ border-bottom: 1px solid;
20
+ color: #ba0c2f;
21
+ border-bottom-color: #ba0c2f;
22
+ }
23
+
24
+ .bux-link:focus {
25
+ border-bottom: none;
26
+ outline: 2px solid #3492B8;
27
+ outline-offset: 2px;
28
+ }
29
+
30
+ .bux-link:hover {
31
+ color: #212325;
32
+ border-bottom-color: #212325;
33
+ background-color: #eff1f2;
34
+ }
35
+
36
+ .bux-link:focus {
37
+ color: #ba0c2f;
38
+ }
39
+
40
+ .bux-link:visited {
41
+ color: #660099;
42
+ border-bottom-color: #660099;
43
+ }
44
+
45
+ .bux-link--before:before {
46
+ content: "\f015";
47
+ font-size: 0.875rem;
48
+ font-family: "bux-icons";
49
+ padding-right: 4px;
50
+ }
51
+
52
+ .bux-link--after:after {
53
+ content: "\f116";
54
+ font-size: 0.875rem;
55
+ font-family: "bux-icons";
56
+ padding-left: 4px;
57
+ }
58
+
59
+ .bux-link--reverse {
60
+ font-family: inherit;
61
+ text-decoration: none;
62
+ border-bottom: 1px solid;
63
+ color: #fff;
64
+ border-bottom-color: #fff;
65
+ }
66
+
67
+ .bux-link--reverse:focus {
68
+ border-bottom: none;
69
+ outline: 2px solid #3492B8;
70
+ outline-offset: 2px;
71
+ }
72
+
73
+ .bux-link--reverse:hover {
74
+ color: #fff;
75
+ border-bottom-color: #fff;
76
+ background-color: #646a6e;
77
+ }
78
+
79
+ .bux-link--reverse:focus {
80
+ color: #fff;
81
+ background-color: #646a6e;
82
+ }
83
+
84
+ .bux-link--reverse:visited {
85
+ color: #e5c9f3;
86
+ border-bottom-color: #e5c9f3;
87
+ }
88
+
89
+ .bux-link--alt {
90
+ font-family: inherit;
91
+ text-decoration: none;
92
+ border-bottom: 1px solid;
93
+ color: #ba0c2f;
94
+ border-bottom-color: #ba0c2f;
95
+ }
96
+
97
+ .bux-link--alt:focus {
98
+ border-bottom: none;
99
+ outline: 2px solid #3492B8;
100
+ outline-offset: 2px;
101
+ }
102
+
103
+ .bux-link--alt:hover {
104
+ color: #000;
105
+ border-bottom-color: #212325;
106
+ background-color: #fff;
107
+ }
108
+
109
+ .bux-link--alt:focus {
110
+ color: #ba0c2f;
111
+ background-color: #fff;
112
+ }
113
+
114
+ .bux-link--alt:visited {
115
+ color: #660099;
116
+ border-bottom-color: #660099;
117
+ }
118
+
119
+ .bux-link--scarlet {
120
+ font-family: inherit;
121
+ text-decoration: none;
122
+ border-bottom: 1px solid;
123
+ color: #fff;
124
+ border-bottom-color: #fff;
125
+ }
126
+
127
+ .bux-link--scarlet:focus {
128
+ border-bottom: none;
129
+ outline: 2px solid #3492B8;
130
+ outline-offset: 2px;
131
+ }
132
+
133
+ .bux-link--scarlet:hover {
134
+ color: #212325;
135
+ border-bottom-color: #fff;
136
+ background-color: #eff1f2;
137
+ }
138
+
139
+ .bux-link--scarlet:focus {
140
+ color: #212325;
141
+ background-color: #eff1f2;
142
+ }
143
+
144
+ .bux-link--scarlet:visited {
145
+ color: #e5c9f3;
146
+ border-bottom-color: #e5c9f3;
147
+ }
148
+
149
+ /* buttons */
150
+
151
+ .bux-button,
152
+ button:not([class]) {
153
+ margin: 0;
154
+ width: auto;
155
+ overflow: visible;
156
+ background: transparent;
157
+ line-height: normal;
158
+ cursor: pointer;
159
+ -webkit-font-smoothing: inherit;
160
+ -moz-osx-font-smoothing: inherit;
161
+ -webkit-appearance: none;
162
+ background-color: #ba0c2f;
163
+ color: #fff;
164
+ border: 2px solid #ba0c2f;
165
+ padding: .625rem 1.25rem;
166
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
167
+ font-size: 1rem;
168
+ font-weight: 600;
169
+ text-align: center;
170
+ text-decoration: none
171
+ }
172
+
173
+ .bux-button:hover,
174
+ button:not([class]):hover {
175
+ background-color: #3f4443;
176
+ color: #fff;
177
+ border-color: #3f4443
178
+ }
179
+
180
+ .bux-button:active,
181
+ .bux-button:focus,
182
+ button:not([class]):active,
183
+ button:not([class]):focus {
184
+ background-color: #ba0c2f;
185
+ color: #fff;
186
+ border: 2px solid #ba0c2f;
187
+ outline: 2px solid #3492b8;
188
+ outline-offset: 1px
189
+ }
190
+
191
+ .bux-button--disabled {
192
+ margin: 0;
193
+ width: auto;
194
+ overflow: visible;
195
+ background: transparent;
196
+ line-height: normal;
197
+ cursor: pointer;
198
+ -webkit-font-smoothing: inherit;
199
+ -moz-osx-font-smoothing: inherit;
200
+ -webkit-appearance: none;
201
+ background-color: #eff1f2;
202
+ color: #868e92;
203
+ border: 2px solid #eff1f2;
204
+ padding: .625rem 1.25rem;
205
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
206
+ font-size: 1rem;
207
+ font-weight: 600;
208
+ text-align: center;
209
+ text-decoration: none;
210
+ cursor: not-allowed
211
+ }
212
+
213
+ .bux-button--disabled:hover {
214
+ background-color: #eff1f2;
215
+ color: #868e92;
216
+ border-color: #eff1f2
217
+ }
218
+
219
+ .bux-button--disabled:active,
220
+ .bux-button--disabled:focus {
221
+ background-color: #eff1f2;
222
+ color: #868e92;
223
+ border: 2px solid #eff1f2;
224
+ outline: 2px solid #3492b8;
225
+ outline-offset: 1px
226
+ }
227
+
228
+ .bux-button--alt {
229
+ margin: 0;
230
+ width: auto;
231
+ overflow: visible;
232
+ background: transparent;
233
+ line-height: normal;
234
+ cursor: pointer;
235
+ -webkit-font-smoothing: inherit;
236
+ -moz-osx-font-smoothing: inherit;
237
+ -webkit-appearance: none;
238
+ background-color: #fff;
239
+ color: #ba0c2f;
240
+ border: 2px solid #ba0c2f;
241
+ padding: .625rem 1.25rem;
242
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
243
+ font-size: 1rem;
244
+ font-weight: 600;
245
+ text-align: center;
246
+ text-decoration: none
247
+ }
248
+
249
+ .bux-button--alt:hover {
250
+ background-color: #3f4443;
251
+ color: #fff;
252
+ border-color: #3f4443
253
+ }
254
+
255
+ .bux-button--alt:active,
256
+ .bux-button--alt:focus {
257
+ background-color: #fff;
258
+ color: #ba0c2f;
259
+ border: 2px solid #ba0c2f;
260
+ outline: 2px solid #3492b8;
261
+ outline-offset: 1px
262
+ }
263
+
264
+ .bux-button--alt-disabled {
265
+ margin: 0;
266
+ width: auto;
267
+ overflow: visible;
268
+ background: transparent;
269
+ line-height: normal;
270
+ cursor: pointer;
271
+ -webkit-font-smoothing: inherit;
272
+ -moz-osx-font-smoothing: inherit;
273
+ -webkit-appearance: none;
274
+ background-color: #eff1f2;
275
+ color: #868e92;
276
+ border: 2px solid #dfe3e5;
277
+ padding: .625rem 1.25rem;
278
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
279
+ font-size: 1rem;
280
+ font-weight: 600;
281
+ text-align: center;
282
+ text-decoration: none;
283
+ cursor: not-allowed
284
+ }
285
+
286
+ .bux-button--alt-disabled:hover {
287
+ background-color: #eff1f2;
288
+ color: #868e92;
289
+ border-color: #dfe3e5
290
+ }
291
+
292
+ .bux-button--alt-disabled:active,
293
+ .bux-button--alt-disabled:focus {
294
+ background-color: #eff1f2;
295
+ color: #868e92;
296
+ border: 2px solid #dfe3e5;
297
+ outline: 2px solid #3492b8;
298
+ outline-offset: 1px
299
+ }
300
+
301
+ .bux-button--small {
302
+ margin: 0;
303
+ width: auto;
304
+ overflow: visible;
305
+ background: transparent;
306
+ line-height: normal;
307
+ cursor: pointer;
308
+ -webkit-font-smoothing: inherit;
309
+ -moz-osx-font-smoothing: inherit;
310
+ -webkit-appearance: none;
311
+ background-color: #ba0c2f;
312
+ color: #fff;
313
+ border: 2px solid #ba0c2f;
314
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
315
+ font-size: 1rem;
316
+ font-weight: 600;
317
+ text-align: center;
318
+ text-decoration: none;
319
+ font-size: .875rem;
320
+ padding: .375rem .75rem
321
+ }
322
+
323
+ .bux-button--small:hover {
324
+ background-color: #3f4443;
325
+ color: #fff;
326
+ border-color: #3f4443
327
+ }
328
+
329
+ .bux-button--small:active,
330
+ .bux-button--small:focus {
331
+ background-color: #ba0c2f;
332
+ color: #fff;
333
+ border: 2px solid #ba0c2f;
334
+ outline: 2px solid #3492b8;
335
+ outline-offset: 1px
336
+ }
337
+
338
+ .bux-button--small-disabled {
339
+ margin: 0;
340
+ width: auto;
341
+ overflow: visible;
342
+ background: transparent;
343
+ line-height: normal;
344
+ cursor: pointer;
345
+ -webkit-font-smoothing: inherit;
346
+ -moz-osx-font-smoothing: inherit;
347
+ -webkit-appearance: none;
348
+ background-color: #eff1f2;
349
+ color: #868e92;
350
+ border: 2px solid #eff1f2;
351
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
352
+ font-size: 1rem;
353
+ font-weight: 600;
354
+ text-align: center;
355
+ text-decoration: none;
356
+ cursor: not-allowed;
357
+ font-size: .875rem;
358
+ padding: .375rem .75rem
359
+ }
360
+
361
+ .bux-button--small-disabled:hover {
362
+ background-color: #eff1f2;
363
+ color: #868e92;
364
+ border-color: #eff1f2
365
+ }
366
+
367
+ .bux-button--small-disabled:active,
368
+ .bux-button--small-disabled:focus {
369
+ background-color: #eff1f2;
370
+ color: #868e92;
371
+ border: 2px solid #eff1f2;
372
+ outline: 2px solid #3492b8;
373
+ outline-offset: 1px
374
+ }
375
+
376
+ .bux-button--alt-small {
377
+ margin: 0;
378
+ width: auto;
379
+ overflow: visible;
380
+ background: transparent;
381
+ line-height: normal;
382
+ cursor: pointer;
383
+ -webkit-font-smoothing: inherit;
384
+ -moz-osx-font-smoothing: inherit;
385
+ -webkit-appearance: none;
386
+ background-color: #fff;
387
+ color: #ba0c2f;
388
+ border: 2px solid #ba0c2f;
389
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
390
+ font-size: 1rem;
391
+ font-weight: 600;
392
+ text-align: center;
393
+ text-decoration: none;
394
+ font-size: .875rem;
395
+ padding: .375rem .75rem
396
+ }
397
+
398
+ .bux-button--alt-small:hover {
399
+ background-color: #3f4443;
400
+ color: #fff;
401
+ border-color: #3f4443
402
+ }
403
+
404
+ .bux-button--alt-small:active,
405
+ .bux-button--alt-small:focus {
406
+ background-color: #fff;
407
+ color: #ba0c2f;
408
+ border: 2px solid #ba0c2f;
409
+ outline: 2px solid #3492b8;
410
+ outline-offset: 1px
411
+ }
412
+
413
+ .bux-button--alt-small-disabled {
414
+ margin: 0;
415
+ width: auto;
416
+ overflow: visible;
417
+ background: transparent;
418
+ line-height: normal;
419
+ cursor: pointer;
420
+ -webkit-font-smoothing: inherit;
421
+ -moz-osx-font-smoothing: inherit;
422
+ -webkit-appearance: none;
423
+ background-color: #eff1f2;
424
+ color: #868e92;
425
+ border: 2px solid #dfe3e5;
426
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
427
+ font-size: 1rem;
428
+ font-weight: 600;
429
+ text-align: center;
430
+ text-decoration: none;
431
+ cursor: not-allowed;
432
+ font-size: .875rem;
433
+ padding: .375rem .75rem
434
+ }
435
+
436
+ .bux-button--alt-small-disabled:hover {
437
+ background-color: #eff1f2;
438
+ color: #868e92;
439
+ border-color: #dfe3e5
440
+ }
441
+
442
+ .bux-button--alt-small-disabled:active,
443
+ .bux-button--alt-small-disabled:focus {
444
+ background-color: #eff1f2;
445
+ color: #868e92;
446
+ border: 2px solid #dfe3e5;
447
+ outline: 2px solid #3492b8;
448
+ outline-offset: 1px
449
+ }
450
+
451
+ .bux-button--icon {
452
+ margin: 0;
453
+ width: auto;
454
+ overflow: visible;
455
+ background: transparent;
456
+ line-height: normal;
457
+ cursor: pointer;
458
+ -webkit-font-smoothing: inherit;
459
+ -moz-osx-font-smoothing: inherit;
460
+ -webkit-appearance: none;
461
+ background-color: #eff1f2;
462
+ color: #ba0c2f;
463
+ border: 2px solid #eff1f2;
464
+ padding: .625rem 1.25rem;
465
+ font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif;
466
+ font-size: 1rem;
467
+ font-weight: 600;
468
+ text-align: center;
469
+ text-decoration: none;
470
+ display: flex;
471
+ align-items: center
472
+ }
473
+
474
+ .bux-button--icon:hover {
475
+ background-color: #3f4443;
476
+ color: #fff;
477
+ border-color: #3f4443
478
+ }
479
+
480
+ .bux-button--icon:active,
481
+ .bux-button--icon:focus {
482
+ background-color: #eff1f2;
483
+ color: #ba0c2f;
484
+ border: 2px solid #eff1f2;
485
+ outline: 2px solid #3492b8;
486
+ outline-offset: 1px
487
+ }
488
+
489
+ .bux-button__icon {
490
+ margin-right: 16px;
491
+ height: 28px;
492
+ width: 28px;
493
+ display: flex;
494
+ align-items: center;
495
+ font-family: 'bux-icons';
496
+ }
497
+
498
+ .bux-button__icon .icon {
499
+ padding-top: 9px;
500
+ font-size: 28px
501
+ }
502
+
503
+ a.bux-button {
504
+ display: inline-block
505
+ }
506
+
507
+ /* osu header */
508
+
509
+ .bux-osu-nav {
510
+ background-color: #fff;
511
+ font-family: "BuckeyeSans", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
512
+ padding: 10px 0;
513
+ position: relative;
514
+ border-bottom: 2px solid #dfe3e5;
515
+ }
516
+
517
+ #osu-nav-trigger {
518
+ text-align: center;
519
+ border: none;
520
+ border-left: 2px solid #bfc6cb;
521
+ border-radius: 0;
522
+ }
523
+
524
+ #osu-nav-trigger::after {
525
+ font-family: "bux-icons";
526
+ content: "\f00e";
527
+ color: #212325;
528
+ font-size: 20px;
529
+ cursor: pointer;
530
+ font-weight: 700;
531
+ }
532
+
533
+ #osu-nav-trigger[aria-expanded="true"]::after {
534
+ content: "\f105";
535
+ }
536
+
537
+ .bux-osu-nav__link {
538
+ padding-top: .5rem;
539
+ padding-bottom: .5rem;
540
+ border-bottom: 2px solid #dfe3e5;
541
+ }
542
+
543
+ .bux-osu-nav__link:first-child {
544
+ border-top: 2px solid #dfe3e5;
545
+ }
546
+
547
+ .bux-osu-nav__link a {
548
+ font-family: inherit;
549
+ text-decoration: none;
550
+ border-bottom: 1px solid;
551
+ color: #ba0c2f;
552
+ border-bottom-color: #ba0c2f;
553
+ border-bottom: none;
554
+ color: #3f4443;
555
+ font-weight: 700;
556
+ }
557
+
558
+ .bux-osu-nav__link a:focus {
559
+ border-bottom: none;
560
+ outline: 2px solid #3492b8;
561
+ outline-offset: 2px;
562
+ }
563
+
564
+ .bux-osu-nav__link a:hover {
565
+ color: #000;
566
+ border-bottom-color: #212325;
567
+ background-color: #fff;
568
+ }
569
+
570
+ .bux-osu-nav__link a:focus {
571
+ color: #ba0c2f;
572
+ background-color: #fff;
573
+ }
574
+
575
+ #osu-navname-block {
576
+ height: 45px;
577
+ }
578
+
579
+ .bux-osu-nav__osu-logo-img {
580
+ height: 35px
581
+ }
582
+
583
+
584
+ @media (min-width: 992px) {
585
+ .bux-osu-nav__link {
586
+ border-bottom: none;
587
+ }
588
+
589
+ .bux-osu-nav__link:first-child {
590
+ border-top: none;
591
+ }
592
+
593
+ .bux-osu-nav__link a {
594
+ font-size: 1rem;
595
+ }
596
+
597
+ .bux-osu-nav__link a:hover {
598
+ color: #ba0c2f;
599
+ border-bottom: 1px solid #ba0c2f;
600
+ }
601
+
602
+ #osu-navname-block {
603
+ height: 60px;
604
+ }
605
+
606
+ .bux-osu-nav__osu-logo-img {
607
+ height: 50px
608
+ }
609
+
610
+ #osu_navlinks {
611
+ display: block;
612
+ justify-content: end;
613
+ }
614
+ }
615
+
616
+ /* osu footer */
617
+
618
+ .bux-footer,
619
+ .bux-footer--light {
620
+ min-height: 200px;
621
+ padding: 24px 0;
622
+ background-color: #f6f7f8;
623
+ color: #212325
624
+ }
625
+
626
+ .bux-footer--light .bux-link,
627
+ .bux-footer .bux-link {
628
+ color: #212325;
629
+ border-bottom: 1px solid #212325
630
+ }
631
+
632
+ .bux-footer--light .bux-link:hover,
633
+ .bux-footer .bux-link:hover {
634
+ background-color: #fff;
635
+ color: #ba0c2f;
636
+ border-bottom-color: #ba0c2f
637
+ }
638
+
639
+ .bux-footer--light .bux-link:focus,
640
+ .bux-footer .bux-link:focus,
641
+ .bux-footer__logo a:focus {
642
+ outline: 2px solid #3492b8;
643
+ background-color: #fff;
644
+ color: #ba0c2f
645
+ }
646
+
647
+ .bux-footer--light hr,
648
+ .bux-footer hr {
649
+ border: none;
650
+ border-top: 2px solid #dfe3e5;
651
+ margin-bottom: 16px
652
+ }
653
+
654
+ .bux-footer__fine-print {
655
+ font-size: .75rem;
656
+ }
657
+
658
+ .bux-footer--dark {
659
+ min-height: 200px;
660
+ padding: 24px 0;
661
+ background-color: #212325;
662
+ color: #fff
663
+ }
664
+
665
+ .bux-footer--dark .bux-link {
666
+ color: #fff;
667
+ border-bottom: 1px solid #fff
668
+ }
669
+
670
+ .bux-footer--dark .bux-link:hover {
671
+ background-color: #646a6e;
672
+ color: #fff;
673
+ border-bottom-color: #fff
674
+ }
675
+
676
+ .bux-footer--dark .bux-link:focus {
677
+ outline: 2px solid #3492b8;
678
+ background-color: #646a6e;
679
+ color: #fff
680
+ }
681
+
682
+ .bux-footer--dark hr {
683
+ border: none;
684
+ border-top: 2px solid #868e92;
685
+ margin-bottom: 16px
686
+ }
687
+
688
+ .bux-footer--white {
689
+ min-height: 200px;
690
+ padding: 24px 0;
691
+ background-color: #fff;
692
+ color: #212325;
693
+ }
694
+
695
+ .bux-footer--white .bux-link {
696
+ color: #212325;
697
+ border-bottom: 1px solid #212325
698
+ }
699
+
700
+ .bux-footer--white .bux-link:hover {
701
+ background-color: #eff1f2;
702
+ color: #ba0c2f;
703
+ border-bottom-color: #ba0c2f
704
+ }
705
+
706
+ .bux-footer--white .bux-link:focus {
707
+ outline: 2px solid #3492b8;
708
+ background-color: #eff1f2;
709
+ color: #ba0c2f
710
+ }
711
+
712
+ .bux-footer--white hr {
713
+ border: none;
714
+ border-top: 2px solid #eff1f2;
715
+ margin-bottom: 16px
716
+ }
717
+
718
+ .bux-footer--white {
719
+ border-top: 2px solid #dfe3e5
720
+ }
721
+
722
+ .bux-footer__logo a {
723
+ display: inline-block;
724
+ width: 270px
725
+ }
726
+
727
+ .bux-footer .bux-footer__logo {
728
+ margin-bottom: 16px;
729
+ }
730
+
731
+ .bux-footer .bux-footer__contact p {
732
+ /* font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif; */
733
+ font-size: .875rem;
734
+ margin-bottom: 0;
735
+ line-height: 1.375;
736
+ }
737
+
738
+ .bux-footer p.bux_footer__email, .bux-footer p.bux_footer__fax, .bux-footer p.bux_footer__phone {
739
+ margin: 8px 0;
740
+ font-size: .875rem;
741
+ line-height: 1.375;
742
+ }
743
+
744
+ .bux-footer .bux_footer__site-name {
745
+ font-weight: 700;
746
+ }
747
+
748
+ .bux-footer .bux-footer__social {
749
+ text-align: right;
750
+ }
751
+
752
+ .bux-social-links .bux-social-links__item {
753
+ display: inline-block;
754
+ margin-right: 8px;
755
+ }
756
+
757
+ .bux-social-links .bux-social-links__item:last-child {
758
+ margin-right: 0;
759
+ }
760
+
761
+ .bux-social-links .bux-social-links__link,
762
+ .bux-social-links .bux-social-links__link:hover,
763
+ .bux-social-links .bux-social-links__link:focus {
764
+ color: inherit;
765
+ background-color: inherit;
766
+ border-bottom: none;
767
+ display: flex;
768
+ align-items: center;
769
+ justify-content: center;
770
+ text-decoration: none;
771
+ width: 44px;
772
+ height: 44px;
773
+ }
774
+
775
+ .bux-social-links .bux-social-links__link i, .bux-social-links .icon {
776
+ font-size: 1.25rem;
777
+ line-height: 0;
778
+ font-family: "bux-icons";
779
+ }
780
+
781
+
782
+ @media (min-width: 640px) {
783
+ .bux-footer__logo a {
784
+ width: 100%
785
+ }
786
+ }
787
+
788
+ @media (min-width: 992px) {
789
+ .bux-footer__logo a {
790
+ width: 290px
791
+ }
792
+ }