From 45c358716e1f4e84f083e3fa743a732bccdfd149 Mon Sep 17 00:00:00 2001 From: max Date: Fri, 10 Feb 2023 05:44:43 +0000 Subject: [PATCH] home --- css/home.css | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++- home.html | 85 ++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 168 insertions(+), 4 deletions(-) diff --git a/css/home.css b/css/home.css index 3d79ad5..6e72778 100644 --- a/css/home.css +++ b/css/home.css @@ -85,4 +85,89 @@ padding: 40px 50px; } - + /* Add a dark background color with a little bit see-through */ + .navbar { + margin-bottom: 0; + background-color: #2d2d30; + border: 0; + font-size: 11px !important; + letter-spacing: 4px; + opacity: 0.9; +} + +/* Add a gray color to all navbar links */ +.navbar li a, .navbar .navbar-brand { + color: #d5d5d5 !important; +} + +/* On hover, the links will turn white */ +.navbar-nav li a:hover { + color: #fff !important; +} + +/* The active link */ +.navbar-nav li.active a { + color: #fff !important; + background-color:#29292c !important; +} + +/* Remove border color from the collapsible button */ +.navbar-default .navbar-toggle { + border-color: transparent; +} + +/* Dropdown */ +.open .dropdown-toggle { + color: #fff ; + background-color: #555 !important; +} + +/* Dropdown links */ +.dropdown-menu li a { + color: #000 !important; +} + +/* On hover, the dropdown links will turn red */ +.dropdown-menu li a:hover { + background-color: red !important; +} +/* Add a dark background color to the footer */ +footer { + background-color: #2d2d30; + color: #f5f5f5; + padding: 32px; +} + +footer a { + color: #f5f5f5; +} + +footer a:hover { + color: #777; + text-decoration: none; +} +body { + font: 400 15px/1.8 Lato, sans-serif; + color: #777; +} + +.navbar { + font-family: Montserrat, sans-serif; +} + /* Overwrite default styles of h3 and h4 */ + h3, h4 { + margin: 10px 0 30px 0; + letter-spacing: 10px; + font-size: 20px; + color: #111; +} + +/* Remove rounded borders on input fields */ +.form-control { + border-radius: 0; +} + +/* Disable the ability to resize textareas */ +textarea { + resize: none; +} diff --git a/home.html b/home.html index 89d2f43..17d62ea 100644 --- a/home.html +++ b/home.html @@ -10,7 +10,38 @@ - + + + + + + + \ No newline at end of file