webgo/default.css

145 lines
2.5 KiB
CSS

/* TODO: optimize. the only things modified are the form entries. But it looks cool anyway ;> */
body {
background-position: top center;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: center;
margin: 0;
padding: 0;
font-family: verdana, lucida, arial, helvetica, sans-serif;
}
table {
margin:auto;
border-collapse:collapse;
}
tr{
}
td {
border: 1px solid #5e5e5e;
padding: 5px;
text-align: center;
}
#main {
background: none;
width: 600px;
padding: 0px;
margin-left: auto;
margin-right: auto;
}
#main h1, h2, h3 {
font-family: sans-serif, arial;
font-weight: normal;
letter-spacing: 0.05em;
color: #acacac;
font-variant: small-caps;
padding: 0 1em;
text-align: left;
}
#main h1 {
font-size: 2em;
}
#main h2 {
font-size: 1.5em;
margin-top:50px;
}
#main h3 {
font-size: 1.2em;
}
/* ----------------------=-=-=- Forms -=-=-=--------------------- */
/* pretty forms and buttons */
input {
/* top right bottom left */
border: 0px;
}
input.text {
border: 1px solid #333333;
color: #333333;
background: #fff;
padding: 2px 5px 1px 5px;
font-size: 1em;
}
input.text:hover {
background: #eee;
}
/* the submit buttons have to have class="submit" for the following style: ------------------------------------- */
input.submit {
background-color: #ACE149;
border: 1px solid #222222;
color: #222;
font-size: 0.8em;
font-weight: bold;
cursor: pointer;
}
input.submit:hover {
background-color: #fff;
border: 1px solid #222;
color: #222;
font-size: 0.8em;
font-weight: bold;
cursor: pointer;
}
/* Button-like style for links with class="button"-------------------------------------------------------------------*/
.button {
margin:20px;
}
.button a, .button a:link, .button a:visited {
background-color: #ACE149;
border: 1px solid #222222;
color: #222;
font-size: 0.8em;
font-weight: bold;
margin:0.3em;
padding:2px 4px 2px 4px;/* top right bottom left */
text-decoration:none;
}
.button a:hover {
background-color: #fff;
border: 1px solid #222;
color: #222;
font-size: 0.8em;
font-weight: bold;
margin:0.3em;
}
/* class navbar --------------------------------------------------------------------------------------------------------- */
.navbar {
width:80%;
border-top: 1px solid;
padding:10px 20px 10px 20px;/* top right bottom left */
margin:auto;
}
/* The Board--------------------------------------------------------------------------- --------------------------------- */
#board{
padding-top:30px;
}
#board a, a:link, a:visited {
border: none;
}
#board img {
border:none;
}