Initial commit

This commit is contained in:
mareksebera 2014-09-10 20:20:58 +02:00
commit 3b93da31de
1004 changed files with 265840 additions and 0 deletions

36
app/webroot/css/reset.css Normal file
View file

@ -0,0 +1,36 @@
/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

View file

@ -0,0 +1,98 @@
html, body {
margin: 0;
padding: 0;
}
#header {
width: 100%;
min-height: 30px;
border-bottom: 3px solid black;
}
h1 {
font-size: 30px;
float: left;
padding: 10px;
}
#top-menu {
float: right;
margin-right: 30px;
}
#top-menu > li {
float: left;
}
#top-menu > li > a {
padding: 15px;
display: block;
}
.clear {
clear: both;
}
#items-table {
width: 100%;
margin: 15px;
}
#items-table thead > tr > td, #items-table tfoot > tr > td {
font-weight: bold;
padding-top: 10px;
padding-bottom: 10px;
}
#items-table tbody > tr, thead > tr {
border-bottom: 1px solid #ececec;
}
#items-table tbody > tr > td {
padding-top: 5px;
padding-bottom: 5px;
}
table .actions a {
padding-left: 5px;
padding-right: 5px;
}
#items-table_filter {
padding: 10px;
}
#items-table_filter input[type=search] {
padding: 10px;
font-size: 15px;
width: 200px;
height: 20px;
}
form {
padding: 15px;
}
form .input {
padding: 10px;
}
form .input label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
form .input input, form .input textarea {
width: 75%;
}
form .input select {
padding: 5px;
min-width: 100px;
}
#flashMessage {
padding: 20px;
background-color: #fafafa;
}