From 9189da16073a0c2fab560df7fdbe5edb331d8c47 Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Tue, 10 Jun 2014 14:41:21 +0200 Subject: Move CSS to a dedicated directory css/ --- config.php.example | 2 +- css/style.css | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ includes/style.css | 69 ------------------------------------------------------ 3 files changed, 70 insertions(+), 70 deletions(-) create mode 100644 css/style.css delete mode 100644 includes/style.css diff --git a/config.php.example b/config.php.example index 37a33c2..0f19e46 100644 --- a/config.php.example +++ b/config.php.example @@ -7,7 +7,7 @@ $config['contact']['mail'] = 'support@example.com'; // Frontpage configuration // CSS to use -$config['frontpage']['css'] = 'includes/style.css'; +$config['frontpage']['css'] = 'css/style.css'; // Title of the page $config['frontpage']['title'] = 'Looking Glass'; $config['frontpage']['show_title'] = true; diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..0c815ba --- /dev/null +++ b/css/style.css @@ -0,0 +1,69 @@ +body { + font-size: 1em; + background-color: #FFFFFF; +} +.header_bar { + color: #000000; + text-align: center; + margin-bottom: 1em; +} +.footer_bar { + color: #000000; + font-size: 1.2em; + text-align: center; + margin-top: 1em; + width: 50%; + margin-left: auto; + margin-right: auto; +} +.origin { + font-size: 0.8em; +} +.logo { + text-align: center; + padding: 1%; +} +.content { + color: #000000; + font-size: 1.1em; + text-align: center; + width: 50%; + display: block; + margin-left: auto; + margin-right: auto; +} +.confirm { + width: 50%; + margin-left: auto; + margin-right: auto; +} +.loading { + margin-top: 1em; + width: 50%; + margin-left: auto; + margin-right: auto; +} +.reset { + width: 25%; + margin-left: auto; + margin-right: auto; +} +#dontlook { + display: none; +} +pre { + color: #FFFFFF; + background-color: #000000; + text-decoration: none; + width: 70%; + margin-left: auto; + margin-right: auto; +} +a { + color: #000000; + text-decoration: none; +} +a:hover { + color: #000000; + text-decoration: none; +} diff --git a/includes/style.css b/includes/style.css deleted file mode 100644 index 0c815ba..0000000 --- a/includes/style.css +++ /dev/null @@ -1,69 +0,0 @@ -body { - font-size: 1em; - background-color: #FFFFFF; -} -.header_bar { - color: #000000; - text-align: center; - margin-bottom: 1em; -} -.footer_bar { - color: #000000; - font-size: 1.2em; - text-align: center; - margin-top: 1em; - width: 50%; - margin-left: auto; - margin-right: auto; -} -.origin { - font-size: 0.8em; -} -.logo { - text-align: center; - padding: 1%; -} -.content { - color: #000000; - font-size: 1.1em; - text-align: center; - width: 50%; - display: block; - margin-left: auto; - margin-right: auto; -} -.confirm { - width: 50%; - margin-left: auto; - margin-right: auto; -} -.loading { - margin-top: 1em; - width: 50%; - margin-left: auto; - margin-right: auto; -} -.reset { - width: 25%; - margin-left: auto; - margin-right: auto; -} -#dontlook { - display: none; -} -pre { - color: #FFFFFF; - background-color: #000000; - text-decoration: none; - width: 70%; - margin-left: auto; - margin-right: auto; -} -a { - color: #000000; - text-decoration: none; -} -a:hover { - color: #000000; - text-decoration: none; -} -- cgit v1.2.3