Added FrontBundle with a sample static blog entry

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely
2012-06-16 16:33:00 +02:00
parent b3172570e7
commit a775f44a35
12 changed files with 222 additions and 0 deletions

73
web/css/front.css Normal file
View File

@@ -0,0 +1,73 @@
* {
font-family: sans-serif;
}
body {
background-color: #333333;
margin: 0;
}
#content-wrapper {
background-color: #ffffff;
width: 960px;
margin-left: auto;
margin-right: auto;
padding-top: 14px;
}
#header {
height: 120px;
background-color: #4d4d4d;
color: #ffffff;
}
#header h1 {
text-align: right;
margin: 0 10px 0 0;
font-size: 41px;
font-weight: bold;
padding-top: 45px;
}
#header h2 {
text-align: right;
margin: 0 10px 0 0;
font-size: 12px;
font-weight: normal;
padding-top: 5px;
}
#content {
padding: 8px;
}
#bottombar-wrapper {
display: block;
}
#bottombar-padding {
clear: both;
height: 35px;
}
#bottombar {
position: fixed;
background-color: #4d4d4d;
bottom: 0;
left: 0;
margin: 0;
z-index: 70000;
width: 100%;
padding: 1em;
text-align: center;
vertical-align: center;
color: #b3b3b3;
font-size: 10px;
border-top: 1px solid black;
}
#bottombar a {
color: #b3b3b3;
text-decoration: underline;
}