54 lines
650 B
CSS
Raw Permalink Normal View History

2015-07-09 21:46:53 +02:00
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.agent {
padding: 1.5em;
float: left;
margin: 1em;
width: 20em;
2015-07-10 14:48:57 +02:00
background-color: #eeeeee;
2015-07-09 21:46:53 +02:00
}
.card {
padding: 1.5em;
float: left;
display: inline;
margin: 1em;
width: 20em;
2015-07-10 14:48:57 +02:00
background-color: #eeeeee;
2015-07-09 21:46:53 +02:00
}
2015-07-10 01:55:20 +02:00
.card:hover {
background-color: #eeeeff;
}
2015-07-09 21:46:53 +02:00
.data {
margin-left: 0.5em;
}
.name {
font-weight: bold;
}
table {
width: 100%;
}
2015-07-10 14:48:57 +02:00
a.button {
margin: 0.3em;
text-align: center;
font-size: 0.8em;
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
width: 100px;
height: 20px;
}