Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’„ : set font-display to swap to ensure text is consistently visible

see https://developer.chrome.com/docs/performance/insights/font-display

+5
+5
themes/poison/assets/css/fonts.css
··· 3 3 font-family: 'Fira Sans'; 4 4 font-style: normal; 5 5 font-weight: 300; 6 + font-display: swap; 6 7 src: local(''), 7 8 url('/fonts/fira-sans-v16-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 8 9 url('/fonts/fira-sans-v16-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ ··· 12 13 font-family: 'Fira Sans'; 13 14 font-style: italic; 14 15 font-weight: 300; 16 + font-display: swap; 15 17 src: local(''), 16 18 url('/fonts/fira-sans-v16-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 17 19 url('/fonts/fira-sans-v16-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ ··· 21 23 font-family: 'Fira Sans'; 22 24 font-style: normal; 23 25 font-weight: 400; 26 + font-display: swap; 24 27 src: local(''), 25 28 url('/fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 26 29 url('/fonts/fira-sans-v16-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ ··· 30 33 font-family: 'Fira Sans'; 31 34 font-style: italic; 32 35 font-weight: 400; 36 + font-display: swap; 33 37 src: local(''), 34 38 url('/fonts/fira-sans-v16-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 35 39 url('/fonts/fira-sans-v16-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ ··· 39 43 font-family: 'Abril Fatface'; 40 44 font-style: normal; 41 45 font-weight: 400; 46 + font-display: swap; 42 47 src: local(''), 43 48 url('/fonts/abril-fatface-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 44 49 url('/fonts/abril-fatface-v19-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */