diff --git a/README.md b/README.md index 7bc2383..d192e60 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,4 @@ A place for your styling creativity to grow **NOTE:** *This repo is copyrighted material for your private use only and not to be shared outside of Viking Code School.* +Dennis C \ No newline at end of file diff --git a/assets/grass-tile.jpg b/assets/grass-tile.jpg new file mode 100644 index 0000000..f1476b0 Binary files /dev/null and b/assets/grass-tile.jpg differ diff --git a/index.html b/index.html index 3a88ff2..d3a183d 100644 --- a/index.html +++ b/index.html @@ -6,13 +6,15 @@ Viking CSS Garden + +
-

Viking CSS Garden

+

Viking CSS Garden

A place for your styling creativity to grow

diff --git a/reset.css b/reset.css new file mode 100644 index 0000000..af94440 --- /dev/null +++ b/reset.css @@ -0,0 +1,48 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} \ No newline at end of file diff --git a/style.css b/style.css index 64192bc..0e7a050 100644 --- a/style.css +++ b/style.css @@ -2,9 +2,67 @@ * Your Styles Here * ----------------------------------- */ +html { + color: black; + font-family: 'Covered By Your Grace', cursive, Helvetica, "Times New Roman", sans-serif; + text-align: center; + text-decoration: none; +} +#main-header { +} +#main-content { +} - \ No newline at end of file +.section-content { + +} + +.citation a{ + background-color: #ffff99; + color: black; + text-decoration: none; + padding: 4px 8px; +} + +.citation a:hover{ + background-color: #505050; + color: white; +} + +h1 { + background-color: #505050; + color:white; +} + +body { + background-color: #C2FFC4; +} + +.main-content-section h2 { + background-color: #505050; + color:white; +} + +.sidebar-nav ul { + margin: 0 auto; + padding: 0; + width: 200px; + background-color: #ffff99; + list-style-type: none; +} + +.sidebar-nav li a { + display: block; + color: #000; + padding: 4px 8px; + text-decoration: none; +} + +.sidebar-nav li a:hover { + background-color: #555; + color: white; +} \ No newline at end of file