Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Completed #106

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file added assets/grass-tile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@

<title>Viking CSS Garden</title>

<link href="https://fonts.googleapis.com/css?family=Coming+Soon|Covered+By+Your+Grace" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/reset.css">
</head>
<body>

<!-- Main Header -->
<header id="main-header">
<h1 class="site-title">Viking CSS Garden</h1>
<h1 class="site-title ">Viking CSS Garden</h1>
<h2 class="tagline">A place for your styling creativity to grow</h2>
</header>

Expand Down
48 changes: 48 additions & 0 deletions reset.css
Original file line number Diff line number Diff line change
@@ -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;
}
60 changes: 59 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

}


.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;
}