File: replace-urls-with-local-path.patch

package info (click to toggle)
libjs-bootswatch 3.3.7%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,300 kB
  • ctags: 1
  • sloc: makefile: 20; sh: 12
file content (872 lines) | stat: -rw-r--r-- 27,841 bytes parent folder | download | duplicates (4)
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
Description: Replace urls with local path
 The lib is using external resources to Google, which isn't at all compliant
 with what we do at Debian.
From: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2017-10-13

diff --git a/cosmo/_bootswatch.scss b/cosmo/_bootswatch.scss
index 23161a7e..90da2fee 100644
--- a/cosmo/_bootswatch.scss
+++ b/cosmo/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" !default;
+$web-font-path: "source-sans-pro-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/cosmo/bootstrap.css b/cosmo/bootstrap.css
index 970e2377..08570a5a 100644
--- a/cosmo/bootstrap.css
+++ b/cosmo/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700");
+@import url("source-sans-pro-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/cosmo/bootswatch.less b/cosmo/bootswatch.less
index 1a4ebd79..d2dcc61b 100644
--- a/cosmo/bootswatch.less
+++ b/cosmo/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700";
+@web-font-path: "source-sans-pro-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/cosmo/source-sans-pro-debian.css b/cosmo/source-sans-pro-debian.css
new file mode 100644
index 00000000..bad7c310
--- /dev/null
+++ b/cosmo/source-sans-pro-debian.css
@@ -0,0 +1,18 @@
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 300;
+  src: local('Source Sans Pro Light'), local('SourceSansPro-Light');
+}
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Source Sans Pro'), local('SourceSansPro-Regular');
+}
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold');
+}
diff --git a/cyborg/_bootswatch.scss b/cyborg/_bootswatch.scss
index 9c369a87..8add769c 100644
--- a/cyborg/_bootswatch.scss
+++ b/cyborg/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700" !default;
+$web-font-path: "roboto-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/cyborg/bootstrap.css b/cyborg/bootstrap.css
index 1caace23..2a24a7ca 100644
--- a/cyborg/bootstrap.css
+++ b/cyborg/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
+@import url("roboto-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less
index d6a24ddb..bc4b5a00 100644
--- a/cyborg/bootswatch.less
+++ b/cyborg/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700";
+@web-font-path: "roboto-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/cyborg/roboto-debian.css b/cyborg/roboto-debian.css
new file mode 100644
index 00000000..a911a88e
--- /dev/null
+++ b/cyborg/roboto-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Roboto'), local('Roboto-Regular');
+}
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Roboto Bold'), local('Roboto-Bold');
+}
diff --git a/darkly/_bootswatch.scss b/darkly/_bootswatch.scss
index 0c596848..d3bc4ef5 100644
--- a/darkly/_bootswatch.scss
+++ b/darkly/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic" !default;
+$web-font-path: "lato-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/darkly/bootstrap.css b/darkly/bootstrap.css
index a91672f5..569ee6aa 100644
--- a/darkly/bootstrap.css
+++ b/darkly/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
+@import url("lato-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/darkly/bootswatch.less b/darkly/bootswatch.less
index e0be0065..6732efdb 100644
--- a/darkly/bootswatch.less
+++ b/darkly/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic";
+@web-font-path: "lato-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/darkly/lato-debian.css b/darkly/lato-debian.css
new file mode 100644
index 00000000..57db753f
--- /dev/null
+++ b/darkly/lato-debian.css
@@ -0,0 +1,18 @@
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Lato Regular'), local('Lato-Regular');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Lato Bold'), local('Lato-Bold');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: italic;
+  font-weight: 400;
+  src: local('Lato Italic'), local('Lato-Italic');
+}
diff --git a/flatly/_bootswatch.scss b/flatly/_bootswatch.scss
index a9c2a778..5bc2e19f 100644
--- a/flatly/_bootswatch.scss
+++ b/flatly/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic" !default;
+$web-font-path: "lato-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/flatly/bootstrap.css b/flatly/bootstrap.css
index d919b97f..a60fde55 100644
--- a/flatly/bootstrap.css
+++ b/flatly/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
+@import url("lato-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/flatly/bootswatch.less b/flatly/bootswatch.less
index 71ae90a7..3b7ad1af 100644
--- a/flatly/bootswatch.less
+++ b/flatly/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic";
+@web-font-path: "lato-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/flatly/lato-debian.css b/flatly/lato-debian.css
new file mode 100644
index 00000000..57db753f
--- /dev/null
+++ b/flatly/lato-debian.css
@@ -0,0 +1,18 @@
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Lato Regular'), local('Lato-Regular');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Lato Bold'), local('Lato-Bold');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: italic;
+  font-weight: 400;
+  src: local('Lato Italic'), local('Lato-Italic');
+}
diff --git a/journal/_bootswatch.scss b/journal/_bootswatch.scss
index 0beec2bd..620fb14d 100644
--- a/journal/_bootswatch.scss
+++ b/journal/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700" !default;
+$web-font-path: "news-cycle-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/journal/bootstrap.css b/journal/bootstrap.css
index 8b7e9660..7fa68ab3 100644
--- a/journal/bootstrap.css
+++ b/journal/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=News+Cycle:400,700");
+@import url("news-cycle-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/journal/bootswatch.less b/journal/bootswatch.less
index 8c9cf548..0d4af504 100644
--- a/journal/bootswatch.less
+++ b/journal/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700";
+@web-font-path: "news-cycle-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/journal/news-cycle-debian.css b/journal/news-cycle-debian.css
new file mode 100644
index 00000000..18bc682c
--- /dev/null
+++ b/journal/news-cycle-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'News Cycle';
+  font-style: normal;
+  font-weight: 400;
+  src: local('News Cycle'), local('NewsCycle');
+}
+@font-face {
+  font-family: 'News Cycle';
+  font-style: normal;
+  font-weight: 700;
+  src: local('News Cycle Bold'), local('NewsCycle-Bold');
+}
diff --git a/lumen/_bootswatch.scss b/lumen/_bootswatch.scss
index 2d35f522..89df30f1 100644
--- a/lumen/_bootswatch.scss
+++ b/lumen/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic" !default;
+$web-font-path: "source-sans-pro-debian.css" !default;
 @import url($web-font-path);
 
 @mixin shadow($width: 4px){
diff --git a/lumen/bootstrap.css b/lumen/bootstrap.css
index 10c0e41a..2907af87 100644
--- a/lumen/bootstrap.css
+++ b/lumen/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic");
+@import url("source-sans-pro-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
@@ -269,8 +269,8 @@ th {
 }
 @font-face {
   font-family: 'Glyphicons Halflings';
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
+  src: url('source-sans-pro-debian.css')
+  src: url('source-sans-pro-debian.css')
 }
 .glyphicon {
   position: relative;
diff --git a/lumen/bootswatch.less b/lumen/bootswatch.less
index 1ef2831e..7ce72bcf 100644
--- a/lumen/bootswatch.less
+++ b/lumen/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic";
+@web-font-path: "source-sans-pro-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/lumen/source-sans-pro-debian.css b/lumen/source-sans-pro-debian.css
new file mode 100644
index 00000000..29ab5f8b
--- /dev/null
+++ b/lumen/source-sans-pro-debian.css
@@ -0,0 +1,24 @@
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 300;
+  src: local('Source Sans Pro Light'), local('SourceSansPro-Light');
+}
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Source Sans Pro'), local('SourceSansPro-Regular');
+}
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold');
+}
+@font-face {
+  font-family: 'Source Sans Pro';
+  font-style: italic;
+  font-weight: 400;
+  src: local('Source Sans Pro Italic'), local('SourceSansPro-It');
+}
diff --git a/paper/_bootswatch.scss b/paper/_bootswatch.scss
index 56275ec7..909b9baf 100644
--- a/paper/_bootswatch.scss
+++ b/paper/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" !default;
+$web-font-path: "roboto-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/paper/bootstrap.css b/paper/bootstrap.css
index 7326dea9..b4046147 100644
--- a/paper/bootstrap.css
+++ b/paper/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
+@import url("roboto-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/paper/bootswatch.less b/paper/bootswatch.less
index 1d32ced7..e10088b8 100644
--- a/paper/bootswatch.less
+++ b/paper/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700";
+@web-font-path: "roboto-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/paper/roboto-debian.css b/paper/roboto-debian.css
new file mode 100644
index 00000000..fe5a2c9d
--- /dev/null
+++ b/paper/roboto-debian.css
@@ -0,0 +1,24 @@
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 300;
+  src: local('Roboto Light'), local('Roboto-Light'), url(fonts/Roboto-Light.woff2) format('woff2');
+}
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Roboto'), local('Roboto-Regular'), url(fonts/Roboto-Regular.woff2) format('woff2');
+}
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 500;
+  src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/Roboto-Medium.woff2) format('woff2');
+}
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/Roboto-Bold.woff2) format('woff2');
+}
diff --git a/readable/_bootswatch.scss b/readable/_bootswatch.scss
index edf7a172..80194534 100644
--- a/readable/_bootswatch.scss
+++ b/readable/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Raleway:400,700" !default;
+$web-font-path: "raleway-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/readable/bootstrap.css b/readable/bootstrap.css
index b1f873a7..d5eff3dc 100644
--- a/readable/bootstrap.css
+++ b/readable/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
+@import url("raleway-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/readable/bootswatch.less b/readable/bootswatch.less
index 9e02fb65..db55a109 100644
--- a/readable/bootswatch.less
+++ b/readable/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Raleway:400,700";
+@web-font-path: "raleway-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/readable/raleway-debian.css b/readable/raleway-debian.css
new file mode 100644
index 00000000..6b8e252b
--- /dev/null
+++ b/readable/raleway-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'Raleway';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Raleway');
+}
+@font-face {
+  font-family: 'Raleway';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Raleway Bold'), local('Raleway-Bold');
+}
diff --git a/sandstone/_bootswatch.scss b/sandstone/_bootswatch.scss
index e576413b..b033f236 100644
--- a/sandstone/_bootswatch.scss
+++ b/sandstone/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500,700" !default;
+$web-font-path: "roboto-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/sandstone/bootstrap.css b/sandstone/bootstrap.css
index d91aa7e7..5fad60bd 100644
--- a/sandstone/bootstrap.css
+++ b/sandstone/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
+@import url("roboto-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
@@ -269,8 +269,8 @@ th {
 }
 @font-face {
   font-family: 'Glyphicons Halflings';
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
+  src: url('roboto-debian.css')
+  src: url('roboto-debian.css')
 }
 .glyphicon {
   position: relative;
diff --git a/sandstone/bootswatch.less b/sandstone/bootswatch.less
index e5db6277..42c1edd2 100644
--- a/sandstone/bootswatch.less
+++ b/sandstone/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500,700";
+@web-font-path: "roboto-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/sandstone/roboto-debian.css b/sandstone/roboto-debian.css
new file mode 100644
index 00000000..a73d8524
--- /dev/null
+++ b/sandstone/roboto-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Roboto'), local('Roboto-Regular');
+}
+@font-face {
+  font-family: 'Roboto';
+  font-style: normal;
+  font-weight: 500;
+  src: local('Roboto Medium'), local('Roboto-Medium');
+}
diff --git a/simplex/_bootswatch.scss b/simplex/_bootswatch.scss
index a3babc45..4ed46f7f 100644
--- a/simplex/_bootswatch.scss
+++ b/simplex/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400,700" !default;
+$web-font-path: "open-sans-debian.css" !default;
 @import url($web-font-path);
 
 @mixin btn-shadow($color){
diff --git a/simplex/bootstrap.css b/simplex/bootstrap.css
index 764e1bda..e9459a06 100644
--- a/simplex/bootstrap.css
+++ b/simplex/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
+@import url("open-sans-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/simplex/bootswatch.less b/simplex/bootswatch.less
index 9bf6ab8c..d4409b4f 100644
--- a/simplex/bootswatch.less
+++ b/simplex/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400,700";
+@web-font-path: "open-sans-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/simplex/open-sans-debian.css b/simplex/open-sans-debian.css
new file mode 100644
index 00000000..a1beee10
--- /dev/null
+++ b/simplex/open-sans-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Open Sans'), local('OpenSans');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Open Sans Bold'), local('OpenSans-Bold');
+}
diff --git a/spacelab/_bootswatch.scss b/spacelab/_bootswatch.scss
index b3623cfe..1b5a0d51 100644
--- a/spacelab/_bootswatch.scss
+++ b/spacelab/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700" !default;
+$web-font-path: "open-sans-debian.css" !default;
 @import url($web-font-path);
 
 @mixin btn-shadow($color){
diff --git a/spacelab/bootstrap.css b/spacelab/bootstrap.css
index 0f796e6e..34591c6d 100644
--- a/spacelab/bootstrap.css
+++ b/spacelab/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700");
+@import url("open-sans-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/spacelab/bootswatch.less b/spacelab/bootswatch.less
index 78209bf3..44694fa7 100644
--- a/spacelab/bootswatch.less
+++ b/spacelab/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700";
+@web-font-path: "open-sans-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/spacelab/open-sans-debian.css b/spacelab/open-sans-debian.css
new file mode 100644
index 00000000..6bbd5589
--- /dev/null
+++ b/spacelab/open-sans-debian.css
@@ -0,0 +1,24 @@
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Open Sans'), local('OpenSans');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Open Sans Bold'), local('OpenSans-Bold');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: italic;
+  font-weight: 400;
+  src: local('Open Sans Italic'), local('OpenSans-Italic');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: italic;
+  font-weight: 700;
+  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic');
+}
diff --git a/superhero/_bootswatch.scss b/superhero/_bootswatch.scss
index c23166bd..85192413 100644
--- a/superhero/_bootswatch.scss
+++ b/superhero/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !default;
+$web-font-path: "lato-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/superhero/bootstrap.css b/superhero/bootstrap.css
index d99a3125..34dbfac4 100644
--- a/superhero/bootstrap.css
+++ b/superhero/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");
+@import url("lato-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/superhero/bootswatch.less b/superhero/bootswatch.less
index c1a04b48..f7f138f8 100644
--- a/superhero/bootswatch.less
+++ b/superhero/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700";
+@web-font-path: "lato-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/superhero/lato-debian.css b/superhero/lato-debian.css
new file mode 100644
index 00000000..2dddae51
--- /dev/null
+++ b/superhero/lato-debian.css
@@ -0,0 +1,18 @@
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 300;
+  src: local('Lato Light'), local('Lato-Light');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Lato Regular'), local('Lato-Regular');
+}
+@font-face {
+  font-family: 'Lato';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Lato Bold'), local('Lato-Bold');
+}
diff --git a/united/_bootswatch.scss b/united/_bootswatch.scss
index e7dae2c0..6f240e06 100644
--- a/united/_bootswatch.scss
+++ b/united/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Ubuntu:400,700" !default;
+$web-font-path: "ubuntu-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/united/bootstrap.css b/united/bootstrap.css
index 73049b9d..bc9428ea 100644
--- a/united/bootstrap.css
+++ b/united/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,700");
+@import url("ubuntu-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/united/bootswatch.less b/united/bootswatch.less
index 5e81a4cc..ebce6212 100644
--- a/united/bootswatch.less
+++ b/united/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Ubuntu:400,700";
+@web-font-path: "ubuntu-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/united/ubuntu-debian.css b/united/ubuntu-debian.css
new file mode 100644
index 00000000..4a825605
--- /dev/null
+++ b/united/ubuntu-debian.css
@@ -0,0 +1,12 @@
+@font-face {
+  font-family: 'Ubuntu';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Ubuntu');
+}
+@font-face {
+  font-family: 'Ubuntu';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Ubuntu Bold'), local('Ubuntu-Bold');
+}
diff --git a/yeti/_bootswatch.scss b/yeti/_bootswatch.scss
index 3e5158c8..33fbbd59 100644
--- a/yeti/_bootswatch.scss
+++ b/yeti/_bootswatch.scss
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-$web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700" !default;
+$web-font-path: "open-sans-debian.css" !default;
 @import url($web-font-path);
 
 // Navbar =====================================================================
diff --git a/yeti/bootstrap.css b/yeti/bootstrap.css
index f90228fc..9e5d9049 100644
--- a/yeti/bootstrap.css
+++ b/yeti/bootstrap.css
@@ -1,4 +1,4 @@
-@import url("https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
+@import url("open-sans-debian.css");
 /*!
  * bootswatch v3.3.7
  * Homepage: http://bootswatch.com
diff --git a/yeti/bootswatch.less b/yeti/bootswatch.less
index 5c915cd0..486154cc 100644
--- a/yeti/bootswatch.less
+++ b/yeti/bootswatch.less
@@ -2,7 +2,7 @@
 // Bootswatch
 // -----------------------------------------------------
 
-@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700";
+@web-font-path: "open-sans-debian.css";
 
 .web-font(@path) {
   @import url("@{path}");
diff --git a/yeti/open-sans-debian.css b/yeti/open-sans-debian.css
new file mode 100644
index 00000000..8671fe83
--- /dev/null
+++ b/yeti/open-sans-debian.css
@@ -0,0 +1,36 @@
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 300;
+  src: local('Open Sans Light'), local('OpenSans-Light');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 400;
+  src: local('Open Sans'), local('OpenSans');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: normal;
+  font-weight: 700;
+  src: local('Open Sans Bold'), local('OpenSans-Bold');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: italic;
+  font-weight: 300;
+  src: local('Open Sans Light Italic'), local('OpenSansLight-Italic');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: italic;
+  font-weight: 400;
+  src: local('Open Sans Italic'), local('OpenSans-Italic');
+}
+@font-face {
+  font-family: 'Open Sans';
+  font-style: italic;
+  font-weight: 700;
+  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic');
+}
-- 
2.11.0