Added load and save. Save works, load doesn't (yet).

This commit is contained in:
simon 2014-08-16 21:34:26 +01:00
parent 34d3745ecb
commit ab01606c5c
8 changed files with 139 additions and 56 deletions

View file

@ -37,7 +37,7 @@ body {
#nav:hover #nav-menu {
display: inline;
}
#nav-icon {
padding: 0.25em;
}
@ -52,7 +52,7 @@ body {
display: inline;
}
#nav ul li a {
#nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
@ -68,6 +68,12 @@ li.nav-item a:active { background: gray; color: white; }
color: white;
}
/* there isn't enough room on a phone display for optional elements, and
load/save isn't going to work on a phone anyway */
.nav-optional {
display: none;
}
.widget {
margin: 0;
padding: 0.25em 1em;

View file

@ -6,7 +6,7 @@ body {
/* Overall container div, holds all content of page. Yes, I know it shouldn't have fixed width */
#main-container{
clear: both;
width:100%;
/* width:100%; */
}
/* footer of the document */
@ -54,7 +54,7 @@ body {
display: inline;
}
#nav ul li a {
#nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;

View file

@ -53,7 +53,7 @@ body {
#nav:hover #nav-menu {
display: inline;
}
#nav-icon {
padding: 0.25em;
}
@ -68,7 +68,7 @@ body {
display: inline;
}
#nav ul li a {
#nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
@ -84,6 +84,12 @@ li.nav-item a:active { background: gray; color: white; }
color: white;
}
/* there isn't enough room on a tablet display for optional elements, and
load/save isn't going to work on a tablet anyway */
.nav-optional {
display: none;
}
.widget {
margin: 0;
padding: 0.25em 1em;