Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dataCobra/hugo-vitae.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
AgeCommit message (Collapse)Author
2022-03-26Update FontAwesome to version 6.1.1dataCobra
The changelog can be found here: -> https://fontawesome.com/docs/changelog/
2022-02-12Merge pull request #83 from davidkaufmann/mainBenedikt T
Fix inability to change themes when media query 'prefers-color-scheme: dark' is set
2022-02-12Update FontAwesome to version 6.0.0dataCobra
2022-02-12Update KaTeX to version 0.15.2dataCobra
With this update KaTeX will now use .woff2 instead of .woff webfonts. Now the IE(Internet Explorer) is no longer compatible.
2022-01-20fix 'prefers-color-scheme: dark' overriding light themeDavid Kaufmann
removes media query 'prefers-color-scheme: dark', because it overrides light theme root variables. added new localstorage variable that checks for preference and if it has been set to dark before. not adding this check would result in random theme switches.
2021-07-11Add metadata (readingTime, wordCount, author) #61dataCobra
This commits ports the PR #61. This PR changes the way the author is displayed in a list or single post, and also adds the functionality to display reading time and word count.
2021-04-12Fix some misbehavior in main.cssdataCobra
2021-04-12Fix + Update for KaTeX renderingdataCobra
2021-04-12Add feature #46 possibility to align imagesdataCobra
2021-04-02Fix social part for responsivnesdataCobra
2021-04-02Add max-width for social bardataCobra
2021-04-02Fix dark-modedataCobra
2021-04-02Add feature (dark-mode with switch)dataCobra
2021-03-30Add CSS color variables for dark-modedataCobra
2021-03-27Use CSS variables for the different colorsdataCobra
The use of CSS variables means that in the future the file can be better maintained and the implementation of a dark mode is easier.
2021-03-26Fix behavior when subtitle is missingdataCobra
2021-03-26Change color of background to avoid eyestraindataCobra
2021-03-26Fix options in main.ccsdataCobra
2021-03-17Update FontAwesome to version 5.15.3dataCobra
2021-02-21Fix whitespace between posttags and footerdataCobra
2021-02-21Remove KaTeX for math typesettingdataCobra
2021-02-03Fix #40 (Only use .woff webfonts with FontAwesome)dataCobra
While the last commit updated FontAwesome and added all types of webfont back in. This commit removes all unnecessary webfont types that are only compatible with specific browsers and the theme will now only use .woff for FontAwesome. In the future .woff might be switched for another webfont type.
2021-01-31Update FontAwesome to version 5.15.22.1.5dataCobra
2020-12-06Fix margin of .page-title class2.1.4dataCobra
2020-12-05Adjust appearance of page, list and term headingsdataCobra
Adjustment of the CSS of the h1 headlines of pages, lists and terms to achieve a well-rounded look and feel.
2020-12-05Add tagcloud feature for terms.htmldataCobra
Taxonomy list pages are now displayed in a nice tagcloud and adjust automatically to look good.
2020-12-01Fix colors for a better look and feel in dark modedataCobra
Some of the former colors were not suitable for dark mode and had to be replaced. Be aware that this might change the look and feel of your website also in normal mode. Check the colors before applying them to your live website. If you want to change the colors use the customCSS feature of Vitae.
2020-10-06Update FontAwesome to version 5.15.12.1.1-3dataCobra
2020-10-01Update FontAwesome to version 5.15.0dataCobra
2020-08-27Add Roboto Mono as new font for codedataCobra
2020-08-27Update FontAwesome to version 5.14.0dataCobra
2020-07-23Repair background color of inline css #242.0-6dataCobra
2020-07-21Fix text color of inline code #24dataCobra
2020-07-20Add missing CSS for inline code #24dataCobra
2020-07-04Fix issue #20dataCobra
Embedded gist inherits styling from static/css/main.css
2020-05-26Fix issue #19 (Unwanted break in date)2.0-5dataCobra
2020-04-22Set new font size for highlighted codedataCobra
2020-04-20Cleanup FontAwesome webfonts and all.cssdataCobra
There is no need to make all font types of FontAwesome available. - Now only .woff is used for FontAwesome - This greatly reduces the repository space
2020-04-20Update FontAwesome to version 5.13.0dataCobra
2020-04-20Add CSS style for tablesdataCobra
There is no style for HTML tables at the moment.
2020-04-19Rework of the header for better flexibilitydataCobra
The approach with CSS grids was not as good as desired. CSS floating is better.
2020-04-09Initial redesigndataCobra
2020-03-24Reduce the complete CSS code to a minimumdataCobra
* To start the redesign it is necessary to remove the complete CSS code responsible for the theme. * To ensure a good basic foundation for the design, the normalize.css created by @necolas is used. [1] * The fontawesome CSS file is also still in use. [1] https://github.com/necolas/normalize.css
2020-03-24Add KaTeX for math typesetting1.0.7dataCobra
Math typesetting is now built-in and can be used. To avoid that the scripts are being loaded from third parties. The required script and css files are now delivered directly with hugo-vitae.
2020-03-22Fix for commit ff2d70ddataCobra
Since the if clause is added for SEO purposes to the websites title, the title size was based on h1 or h2 font size and this was a mistake. The website title now has a fixed font size.
2020-02-26Remove main.css lines for selectiondataCobra
These are remnants from the old theme `hugo-ink` that are unnecessary. "::selection" and "::-moz-selection" are removed.
2020-01-02Fix for displayed date1.0.5dataCobra
The new year 2020 is bigger in characters then 2019 was. Because of that there was a unwanted break. This is a quick fix for this problem.
2019-12-20Add feature for displaying the author1.0.3dataCobra
Now it is possible to display the author in the article with the additional function 'authorlink' to provide a link to the website of the author. 1. Enable with 'listAuthor = true' in config 2. Front matter 'authorlink' enables a link to a website
2019-12-20Add new array front matter called notaxonomydataCobra
Since the last update Vitae shows every taxonomy a post is part of below the content. This could lead to a very unpleasantly large number of taxonomies under the post. With the new front matter notaxanomy you can specify every taxonomy that should be not visible below the post. Like this -> notaxonomy = ["series","tags","authors"]
2019-12-18Initial commitdataCobra