blob: fc5931575658fe949060eb9ab0df2fb7f845ad36 (
plain) (
tree)
|
|
/*
Put anything you reference with "url()" in ../assets/
This way, you can minify your application, and just remove the "source" folder for production
*/
.nice-padding {
padding: 10px;
}
.app-panels > * {
width: 320px;
background-color: #EAEAEA;
border-left: 1px solid #000;
/* box-shadow: -4px -4px 4px rgba(0,0,0,0.3); */
}
/* on small devices, make each panel fit to the app width */
@media all and (max-width: 800px) {
.app-panels > * {
min-width: 100%;
max-width: 100%;
}
}
.item {
border-bottom: 1px solid #ccc;
padding: 12px 16px;
}
.item-left {
width: 50px;
}
.content-container {
margin: 10px;
}
.title {
font-weight: bold;
font-size: 1.2em;
padding: 10px;
}
|