some styling

This commit is contained in:
2018-01-24 20:55:29 +02:00
parent e31f1e3f6d
commit 0c6580f323
4 changed files with 407 additions and 22 deletions

53
code/static/css/styles.css Executable file
View File

@@ -0,0 +1,53 @@
html{
min-height: 100%;
position: relative;
}
body{
color: slategray;
background-color: ghostwhite;
min-height: 600px;
font: 14px/1.3 'Segoe UI',Arial, sans-serif;
}
a:visited {
color: darkslategray;
}
a:link {
color: slategray;
}
/* list view */
.clear {
clear: both;
}
#list_title {
float:left;
margin-left: 5em;
}
#list_menu {
float:right;
padding: 8px;
border: 4px solid lightslategray;
background-color: #f3f3fb;
}
#list_table {
border-collapse: collapse;
}
td {
min-width: 10em;
padding: 0px;
}
tr:nth-child(even) {
background: #f3f3fb
}
.td_right {
text-align: right;
}