You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k4ever/k4ever/media/css/style.css

214 lines
3.7 KiB

/* THOSE ARE JUST TEMPORARY, I CHANGE THEM LATER INTO LOCAL RESOURCES */
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold,bolditalic&subset=latin);
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold&subset=latin);
/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
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, font, 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 {
background: transparent;
border: 0;
margin: 0;
padding: 0;
vertical-align: baseline;
}
body {
line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
clear: both;
font-weight: normal;
}
ol, ul, li {
list-style: none;
}
blockquote {
quotes: none;
}
blockquote:before, blockquote:after {
content: '';
content: none;
}
del {
text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
}
a img {
border: none;
}
/* GENERAL SETTINGS */
body {
font-family: 'Droid Sans', arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Droid Serif', Garamond, serif;
}
p { margin-bottom: 7px; }
input {
padding: 2px 5px;
border: 1px solid #E5E5E5;
background: none repeat scroll 0 0 #FBFBFB;
}
input[type=text]:focus, input[type=search]:focus, input[type=password]:focus {
background: #FAFFBD;
}
/* HEADER */
#header {
margin-bottom: 20px;
}
#header > div {
padding: 5px 10px;
}
#header .search {
background: url("img/logo.png") 10px center no-repeat #323232;
height: 40px;
}
#header .search form {
float: right;
line-height: 40px;
}
#header .base_nav {
background: url("img/base_nav_bg.gif") repeat-x #339DD1;
text-transform: uppercase;
height: 50px;
color: white;
}
#header .base_nav h1 {
color: white;
float: left;
margin-right: 20px;
line-height: 50px;
}
#header .base_nav ul {
float: left;
}
#header .base_nav ul li {
display: inline-block;
text-transform: uppercase;
line-height: 36px;
}
#header .base_nav a {
display: block;
margin-top: 7px;
padding: 0 10px;
text-decoration: none;
color: white;
}
#header .base_nav a:hover {
background: white;
color: #339DD1;
}
span.balance {
float: right;
line-height: 50px;
}
/* LOGIN FORM */
form.login {
width: 300px;
margin: 60px auto;
-moz-box-shadow: 3px 3px 6px #333;
-webkit-box-shadow: 3px 3px 6px #333;
box-shadow: 3px 3px 6px #333;
border: 1px solid #E5E5E5;
padding: 20px;
}
form.login label {
display: block;
margin-top: 10px;
margin-bottom: 3px;
}
form.login input {
font-size: 24px;
width: 97%;
}
form.login input[type=submit] {
width: auto;
padding: 3px 20px;
margin-top: 15px;
background: #339DD1;
color: white;
font-size: 18px;
border: 1px solid #323232;
}
/* NOTIFICATIONS */
.error, .notice, .success {
border-top: 1px solid #DDD;
margin-bottom: 1em;
padding: 0.6em 0.8em;
position: fixed;
bottom: 0;
width: 100%;
}
.error h2, .notice h2, .success h2 {
font-size: 100%;
font-weight: bold;
margin-bottom: 10px;
}
.error {
background: #FBE3E4;
color: #8A1F11;
border-color: #FBC2C4;
}
.error a { color:#8A1F11; }
.notice {
background: #FFF6BF;
color: #514721;
border-color: #FFD324;
}
.notice a { color:#514721; }
.success{
background: #E6EFC2;
color: #264409;
border-color: #C6D880;
}
.success a { color:#264409; }