@charset "UTF-8";

/**
**************************************************
*     _  __     _    _____ _            _        *
*    | |/ /    | |  / ____| |          | |       *
*    | ' / __ _| |_| |    | | ___   ___| | __    *
*    |  < / _` | __| |    | |/ _ \ / __| |/ /    *
*    | . \ (_| | |_| |____| | (_) | (__|   <     *
*    |_|\_\__,_|\__|\_____|_|\___/ \___|_|\_\    *
*                                                *
**************************************************


This file is part of the KatClock project, a simple JavaScript application show the current date 
and time in a standardized form used by NATO forces and emergency response services. For further
informations, please consult the README.md file in the root folder of this project.

Florian Meissner <florian.meissner1@volkswagen.de>
*/

/**
                            DARK MODE
                            ---------
    
This file contains all CSS declarations necessary to display the dark mode (nighttime) theme.
*/

body{
	background-color: #121212;
	color: #dddddd;
}

main section {
	border-color: #999999;
	box-shadow: none;
}

main #datetime_kat #hour, #datetime_kat #minute {
    color: #7272ff;
}

main #datetime_kat span:hover {
    color: #ff6666 !important;
}

footer {
   background: #121212;
}
