styling and docs

This commit is contained in:
Ville Rantanen
2018-02-18 10:46:44 +02:00
parent 43719a4811
commit 5000a881e7
4 changed files with 43 additions and 19 deletions

View File

@@ -4,21 +4,21 @@ html {
}
body {
color: slategray;
background-color: ghostwhite;
color: #0E6251;
background-color: #FDF2E9;
min-height: 600px;
font: 14px/1.3 'Segoe UI',Arial, sans-serif;
}
a:visited {
color: darkslategray;
color: #0E3221;
}
a:link {
color: slategray;
color: #0E6251;
}
#page {
padding-bottom:60px;
padding-bottom: 60px;
}
#footer {
position: absolute;
@@ -26,9 +26,14 @@ a:link {
left: 9vw;
width: 80vw;
height: 23px;
background: #f3f3fb;
background-color: #FAE5D3;
text-align: center;
padding-top: 7px;
background: #fdf2e9; /* Old browsers */
background: -moz-linear-gradient(left, #fdf2e9 0%, #fae5d3 50%, #fdf2e9 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #fdf2e9 0%,#fae5d3 50%,#fdf2e9 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #fdf2e9 0%,#fae5d3 50%,#fdf2e9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdf2e9', endColorstr='#fdf2e9',GradientType=1 ); /* IE6-9 */
}
.version_number {
font-size: xx-small;
@@ -40,8 +45,16 @@ td,th {
padding-top: 0.2em;
padding-bottom: 0.2em;
}
th {
cursor: pointer;
}
tr:nth-child(even) {
background: #f3f3fb
background-color: #FAE5D3;
background: -moz-linear-gradient(left, #fae5d3 0%, #fae5d3 95%, #fdf2e9 100%);
background: -webkit-linear-gradient(left, #fae5d3 0%,#fae5d3 95%,#fdf2e9 100%);
background: linear-gradient(to right, #fae5d3 0%,#fae5d3 95%,#fdf2e9 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fae5d3', endColorstr='#fdf2e9',GradientType=1 );
}
.td_right {
@@ -68,10 +81,13 @@ tr:nth-child(even) {
#list_menu {
float:right;
padding: 8px;
border: 4px solid lightslategray;
background-color: #f3f3fb;
border: 4px solid #148F77;
background-color: #FAE5D3;
line-height: 1.5em;
position: relative;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
}
#list_menu ul {
@@ -109,10 +125,13 @@ tr:nth-child(even) {
#index_menu {
float:right;
padding: 8px;
border: 4px solid lightslategray;
background-color: #f3f3fb;
padding: 12px;
border: 4px solid #148F77;
background-color: #FAE5D3;
line-height: 2em;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
}
#index_table {