Files
flees/code/static/css/styles.css
2018-01-24 20:55:29 +02:00

54 lines
681 B
CSS
Executable File

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;
}