@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>
*/

/**
                            LIGHT MODE
                            ----------
    
This file contains all CSS declarations necessary to display the light mode (daylight) theme.
*/


body, ::backdrop {
	background-color: #ffffff;
	color: #000000;
}

main section {
    border-color: #808080;
    box-shadow: 0 3px 3px -3px #999999;
}

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

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

footer {
   background: #ffffff;
}
