End CSS refactoring and organization

CSS refactoring is now complete, and all styles are correctly
organized in main "screen.css" file, with a table of contents.

All supplementary CSS files have been removed, with the
exception of "fonts.css", as explained in previous commit.

This CSS implementation may, however, be considered immature,
and thus could be subject to heavy changes again in the near
future.

Many things are also still missing, such as a responsive
design and support for some custom pages (such as /tags/).

Signed-off-by: Lorenzo Dellacà <lorenzo.dellaca@mind-overflow.net>
This commit is contained in:
Lorenzo Dellacà
2020-08-20 14:05:14 +02:00
parent 67344effd0
commit 3bd2fe5627
9 changed files with 351 additions and 315 deletions

View File

@@ -3,9 +3,9 @@ $(document).ready(function(){
if($(this).scrollTop() >
//$(window).height()*0.3){
100) {
$(".mind-global-title_arrow-down").css({"opacity" : "0"});
$(".mind-global-header_arrow-down").css({"opacity" : "0"});
} else {
$(".mind-global-title_arrow-down").css({"opacity" : "0.4"});
$(".mind-global-header_arrow-down").css({"opacity" : "0.4"});
}
});
});