aboutsummaryrefslogtreecommitdiffstats
path: root/cebong/static/css
Commit message (Collapse)AuthorAgeFilesLines
* Removed unused imports for fonts in cebongWitold Baryluk2019-03-261-4/+3
| | | | | | | | | | | | | | | | | | | | | | It just adds to network roundtrips. Browser will download them even if they are not used. At least the CSS files will be downloaded (and will actually block other processing!). In some case browser will also download actual font files, even if they are not used, but this will usually be done asynchronously or after page is finished loading. But most of the time it is just a waste of bandwidth (but they are cached for 1y and could be used on other websites). As a bonus I fixed some quotation issues of urls, because this is what I see in css documentation - https://developer.mozilla.org/en-US/docs/Web/CSS/@import Next improvement would be to move this `@url import` into separate `link` statement in `base.html`, this way things can proceed in parallel more smoothly. ```html <link rel="stylesheet" href="https://fonts.googleapis.com/css?subset=latin&family=Crimson+Text:400,400italic,600,600italic,700,700italic" type="text/css" importance="low" referrerpolicy="no-referrer" /> ``` After that, and margin all `css` files, this would be really clean and fast theme! :) PS. Google Fonts Service API allows fetching multiple css files together: ```html <link rel="stylesheet" href="https://fonts.googleapis.com/css?subset=latin&family=Yanone+Kaffeesatz|Crimson+Text:400,400italic,600,600italic,700,700italic|Droid+Sans+Mono" type="text/css" importance="low" referrerpolicy="no-referrer" /> ``` (and similarly using `@import url`).
* Changed a lot of URLs towards HTTPSTobias Schmidl2016-01-111-3/+3
| | | | | We don't want to have mixed mode on the site, therefore it's useful to use HTTPS wherever possible. It's no problem to load HTTPS content on a plain HTTP enabled site, but it is a problem the other way round.
* Added more relevant style for <code> tag.Dedi Purwanto2012-11-191-0/+15
|
* Added cebong theme filesDedi Purwanto2012-11-185-0/+755