From cd5e55f38eb0d5dacb124fb9a3cc67730948d3de Mon Sep 17 00:00:00 2001 From: Conrad Sollitt Date: Fri, 22 Nov 2019 13:28:04 -0800 Subject: [PATCH] :art: :page_facing_up: CSS and Doc updates --- public/.htaccess | 8 ++++++-- public/css/site.css | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/public/.htaccess b/public/.htaccess index b0c60c2..b0cd771 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -1,5 +1,9 @@ # Apache Server Config # +# This file will most likely be used on a Mac Apache. +# For local development Apache setup on a Mac see: +# https://www.fastsitephp.com/en/documents/install-php-on-mac +# # By default this file is disabled in recent versions of Apache and to # enable you would have to set [AllowOverride All] in [apache2.conf]. # @@ -13,7 +17,7 @@ # # Because [.htaccess] files are not used by default on recent versions of # Apache this file is configured by default for local development with Apache -# and uses a root [FastSitePHP] directory as the [FallbackResource]. +# and uses a root [fastSitephp] directory as the [FallbackResource]. # # Docs: # https://httpd.apache.org/docs/current/howto/htaccess.html @@ -40,7 +44,7 @@ # For example if using Apache on a Mac this will typically be needed. # # FallbackResource /{site-name}/index.php - FallbackResource /FastSitePHP/Starter-Site/public/index.php + FallbackResource /fastSitephp/starter-site/public/index.php # diff --git a/public/css/site.css b/public/css/site.css index 2dcfdf7..d0e1239 100644 --- a/public/css/site.css +++ b/public/css/site.css @@ -96,7 +96,7 @@ section { box-shadow: 0 1px 5px 0 rgba(0,0,0,.5); margin-top:4em; padding:2em; } .alert-info { background-color:var(--info-color); color:white; } .alert-danger { background-color:red; background-color:var(--error-color); color:white; } -.table { color: var(--dark-color); } +.table { color: var(--dark-color); background-color:#fff; } .table thead th, .table td, .table th { border-top:none; border-bottom:none; }