Skip to content

Commit

Permalink
Adds images, initial JS
Browse files Browse the repository at this point in the history
  • Loading branch information
newmanix committed Feb 1, 2022
1 parent 4c45343 commit 6c9ff38
Show file tree
Hide file tree
Showing 19 changed files with 411 additions and 263 deletions.
45 changes: 45 additions & 0 deletions css/default.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
* {padding:0; margin:0;}
html {background-color:#ccc;}

body {
font-family: Arial, Helvetica, sans-serif;
max-width:960px; /* keeps from getting too large on wide screen */
width:90%; /* shrink to fit screen */
margin:auto; /* center in html element */
background-color:#fff;
padding:20px;
min-height:100%; /* keeps from getting too large on wide screen */
}
img.flexible {
float:right;
display:inline-block;
padding:20px;
max-width:300px; /* actual size of image */
width:33%; /* approximate size taken on screen in maximum view */
}
p {margin:10px;}

h1,h2,h3,h4,h5,h6{
font-weight:normal;
margin:10px;
}
h1.masthead {margin-top:0;}
footer {
text-align:center;
clear:both; /* ride below all items */
}
nav{
text-align:center; /* centers the nav */
}

nav ul {
list-style:none; /* removes the bullets */
}
nav ul li
{
display:inline-block; /* makes horizontal, but able to declare margins */
margin:0 2%; /* margin left-right, gets smaller as necessary */
}
nav a:hover{
text-decoration: none;
}
52 changes: 0 additions & 52 deletions css/forms.css

This file was deleted.

113 changes: 0 additions & 113 deletions css/main.css

This file was deleted.

76 changes: 0 additions & 76 deletions css/nav.css

This file was deleted.

44 changes: 44 additions & 0 deletions css/winter.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
* {padding:0; margin:0;}
html {background-color:#005393;}

body {
font-family: Arial, Helvetica, sans-serif;
max-width:960px; /* keeps from getting too large on wide screen */
width:90%; /* shrink to fit screen */
margin:auto; /* center in html element */
background-color:#fff;
padding:20px;
min-height:100%; /* keeps from getting too large on wide screen */
}
img.flexible {
float:right;
display:inline-block;
padding:20px;
max-width:300px; /* actual size of image */
width:33%; /* approximate size taken on screen in maximum view */
}
p {margin:10px;}
h1,h2,h3,h4,h5,h6{
font-weight:normal;
margin:10px;
}
h1.masthead {margin-top:0;}
footer {
text-align:center;
clear:both; /* ride below all items */
}
nav{
text-align:center; /* centers the nav */
}

nav ul {
list-style:none; /* removes the bullets */
}
nav ul li
{
display:inline-block; /* makes horizontal, but able to declare margins */
margin:0 2%; /* margin left-right, gets smaller as necessary */
}
nav a:hover{
text-decoration: none;
}
Loading

0 comments on commit 6c9ff38

Please sign in to comment.