55 lines
701 B
CSS
55 lines
701 B
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: #333;
|
|
}
|
|
|
|
#container {
|
|
width: 666px; /* muahaha */
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
padding: 32px;
|
|
background-color: #555;
|
|
|
|
color: #eee;
|
|
font-family: "Ubuntu", serif;
|
|
}
|
|
|
|
input[type="text"] {
|
|
color: #fff;
|
|
font-family: "Ubuntu", serif;
|
|
background-color: #777;
|
|
border: 0;
|
|
padding: 4px;
|
|
}
|
|
|
|
.item input, .item span, .item label {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
#items {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.item {
|
|
padding: 8px;
|
|
}
|
|
|
|
.item-focused {
|
|
background-color: #888;
|
|
}
|
|
|
|
#add {
|
|
display: block;
|
|
margin: 8px 0 16px 12px;
|
|
}
|
|
|
|
#tax, .price {
|
|
width: 48px;
|
|
}
|