From a85af5a300c69f6c75fe0d26a65edea6807a55d3 Mon Sep 17 00:00:00 2001 From: Nayab W <42422512+nayabw@users.noreply.github.com> Date: Fri, 19 Oct 2018 07:33:22 -0500 Subject: Center the placeholder text --- index.html | 4 ++-- style.css | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 18f51fe..b7ea3bc 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ Silicon Linux -

Silicon Linux

-

This website is under construction. Content will come soon.

+

Silicon Linux

+

This website is under construction. Content will come soon.

diff --git a/style.css b/style.css index 3aa622a..e41d3f5 100644 --- a/style.css +++ b/style.css @@ -3,3 +3,58 @@ body{ background: #333; color: white } +.title{ + font-size: 50px; + text-align: center; +} + +#title{ + border: solid white 5px; +} + +#navigation{ + padding-top: 0px; + padding-left: 0px; + padding-right: 0px; + padding-bottom: 15px; + margin: -1px; +} + +ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: whitesmoke; +} + +li.logo{ + font-weight: bold; + color: black; +} +li.nav { + float: left; + display: block; + color: black; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} + +a.nav{ + color: black; + text-decoration: none; +} + +li a:hover { + background-color: gray; +} + +.active { + background-color: #68a2ff; + color: black; +} + +.center { + text-align: center; +} \ No newline at end of file -- cgit v1.2.3