48 lines
633 B
CSS
48 lines
633 B
CSS
.container {
|
|
min-width: 300px;
|
|
}
|
|
|
|
ul {
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
text-align: left;
|
|
font-size: 14pt;
|
|
}
|
|
|
|
li label {
|
|
display: block;
|
|
border: 1px solid #ffffff00;
|
|
}
|
|
|
|
li label:hover {
|
|
cursor: pointer;
|
|
border: 1px solid #ffffff;
|
|
}
|
|
|
|
li .button-delete {
|
|
display: none;
|
|
font-size: 10pt;
|
|
float: right;
|
|
height: 100%;
|
|
}
|
|
|
|
li:hover .button-delete {
|
|
display: inline-block;
|
|
}
|
|
|
|
.form-input input,
|
|
.form-input button {
|
|
width: 100%;
|
|
padding: 2px 4px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.form-input input {
|
|
font-size: 12pt;
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
}
|