diff --git a/css/Style.css b/css/Style.css index ae8b57b..df36820 100644 --- a/css/Style.css +++ b/css/Style.css @@ -9,6 +9,56 @@ html, body { padding: 0; } +#nav-ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; + position: fixed; + top: 0; + width: 100%; +} + +.nav-li { + display: block; + float: right; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; + list-style-type: none; + margin: 0 30px 0 0; +} + +.nav-li a { + padding: 10px 15px; + color: #333; + color: rgba(255,255,255, 0.8); + text-decoration: none; + font-weight: bold; + text-shadow: 0 1px 1px rgba(0,0,0, 0.3); + -webkit-transition: all 0.75s ease-in-out; + -moz-transition: all 0.75s ease-in-out; + -o-transition: all 0.75s ease-in-out; + transition: all 0.75s ease-in-out; +} + +.nav-li a:hover, a:focus { + color: #fff; + background: #fff; + background: rgba(255,255,255, 0.2); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + +#logo{ + float: left; + font-weight: bold; + margin: 0 0 0 30px; +} + .container{ padding: 0; margin: 0; diff --git a/index.html b/index.html index 619503a..fbff216 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,6 @@ +