Skip to content

Commit

Permalink
A redesign of draft3 is needed in order to better incorporate flexibl…
Browse files Browse the repository at this point in the history
…e boxes in the layout design and implementation.
  • Loading branch information
jmeuser committed Jan 24, 2016
1 parent 1995f49 commit 0f09f76
Showing 1 changed file with 22 additions and 14 deletions.
36 changes: 22 additions & 14 deletions drafts/draft3/css/default.css
Original file line number Diff line number Diff line change
@@ -1,50 +1,58 @@
body {
background-color: #FFF;
font: 12pt "Arial";
background: #FFF;
color: #000;
}


h1, h2, h3, h4, h5, h6 {
}


a {
color: #FFF;
background: #666;
text-decoration: none;
background: #888;
color: #FFF;
}
a:hover {
background:#EEE;
color: #000;
background-color:#EEE;
}


ol, ul{
display: flex;
flex-direction: column;
justify-content: space-around;
justify-content: space-between;
}

li{
margin: 1% 0 1% 0;
list-style: none;
}

ul li {
list-style: none;

section {
display: flex;
flex-direction: column;
justify-content: space-between;

}

header {
width: 100%;
}

header nav {
display: flex;
justify-content: space-around;
font-size: 300%;
font-size: 3em;
}

header nav a {
display:flex;
flex:auto;
justify-content: space-around;
margin: 0 1% 0 1%;
border: .1em solid #FFF;
background: #666;
color: #FFF;
}
header nav a:hover {
background:#EEE;
color: #000;
}

0 comments on commit 0f09f76

Please sign in to comment.