old style; update for new grid layout
It still looks terrible, but I suppose that was the entire idea of this optional style
This commit is contained in:
parent
c68094cd11
commit
63f177475b
|
@ -2,6 +2,17 @@ body {
|
|||
background-image: url(old/chip.jpg);
|
||||
cursor: url(old/cursor.gif), auto;
|
||||
justify-content: flex-start;
|
||||
grid-column-gap: 0em;
|
||||
grid-template-columns: 200px 600px;
|
||||
grid-template-rows: min-content min-content 1fr;
|
||||
grid-template-areas:
|
||||
"header main"
|
||||
"menu main"
|
||||
"footer main";
|
||||
}
|
||||
|
||||
.main-sidebar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
header {
|
||||
|
@ -16,14 +27,15 @@ footer {
|
|||
|
||||
a:hover {
|
||||
cursor: url(old/cursor-over.gif), auto;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.header-navigation {
|
||||
body > nav, body > header, body > footer {
|
||||
background-color: cyan;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.header-navigation> nav ul {
|
||||
body > nav ul {
|
||||
padding-left: 2em;
|
||||
list-style-image: url(old/bullet.gif);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue