diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..da3745d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.* linguist-language=Java diff --git a/README.md b/README.md new file mode 100644 index 0000000..e82110a --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# CSS3-Flexbox-Tutorial +A Fictional Fruit blog to accompany the tutorial in Smashing Magazine + + +Css Flexbox Tutorial to show implementation of various features of Flexbox in css. diff --git a/css/style.css b/css/style.css index 8d3ae29..f338a8d 100644 --- a/css/style.css +++ b/css/style.css @@ -31,7 +31,7 @@ nav ul li { padding: 2px 5px; background-color: #343434; text-align: center; -we nav ul li:first-of-type { margin-left: 0; } nav ul li:last-of-type { margin-right: 0; border-right: none; } nav ul li a { text-decoration: none; color: #fcfcfc; font-size: 12px; } -nav ul li:hover { width: 200px; background-color: #000; } +nav ul li:hover { background-color: #000; } /* Introduction */