server/src/main/webapp/static/css/index.css
author ymh <ymh.work@gmail.com>
Mon, 25 Mar 2013 19:49:19 +0100
changeset 124 c04232f8cc53
parent 97 f7d611f50e58
child 127 906fed13c1e1
permissions -rw-r--r--
First implementation of status change.


::-moz-selection { background: initial; color: initial; text-shadow: initial; }
::selection { background: initial; color: initial; text-shadow: initial; }

body,html {
	height: 100%;
}

body, h1, h2, table, tbody, thead, tr, td, th {
    border: none; margin: 0; padding: 0; text-align: left; font-size: 100%;
}
body {
    margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; background: #F6F6F6; color: #333333;
}
h1 {
    margin-bottom: 5px; padding: 15px; border-bottom: 2px solid #ffffff; background: #333333; color: #ffffff;
    font-weight: bold; font-size: 30px;
}
h2 {
    margin: 12px 15px 2px;
}
h3 {
    color: #999999; font-size: 15px; font-weight: bold;
    font-style: italic; margin: 5px 30px;
}
a {
    text-decoration: none; color: #3030a0;
}
a:hover {
    text-decoration: underline;
}
table {
    border-collapse: collapse; margin: 5px 15px; border: 1px solid #CCCCCC;
}
th, td {
    padding: 4px 16px 4px 4px; border: 1px solid #cccccc;
}
thead {
    font-size: 16px;
}
tbody {
    font-size: 14px;
}
tbody tr:nth-child(even) {
    background: #fafafa;
}
tbody tr:nth-child(odd) {
    background: #f0f0f0;
}
thead tr {
    background: #666666; color: #f0e0e0;
}
tbody tr:hover {
    background: #ffffff;
}

.pagination-container {
	margin: 12px 15px 2px;
	font-size: 14px;
}

.pagination-container a, .pagination-container span {
	margin: 0 1px 0 1px;
}

div#container {
    position:relative; /* needed for footer positioning*/
    margin:0 auto; /* center, not in IE5 */

    height:auto !important; /* real browsers */
    height:100%; /* IE6: treaded as min-height*/

    min-height:100%; /* real browsers */
}

div#wrapper {
    padding-bottom: 1em; /* bottom padding for footer */
}

div#footer {
    position:absolute;
    bottom:0;
    width:100%;
    font-size: 12px;
}
 
div#footer div {
     float:right;
     margin: 15px 10px 0 0;
}

#home-link,#home-link:link,#home-link:hover,#home-link:active,#home-link:visited {
	text-decoration: none;
	color: #ffffff;
}


#inner {
   width: 300px;
   margin: 10px auto;
 }
 
 #button {
   margin: 0 auto;
   border-radius: 3px;
   text-align: center;
   font: 36px verdana,arial,sans-serif;
   color: white;
   text-shadow: 0 -1px 0 rgba(0,0,0,.8);
   height: 70px;
   line-height: 70px;
   background: #555;
   background: -webkit-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
   background: -moz-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
   background: -ms-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
   background: -o-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
   box-shadow: inset 0 1px 3px rgba(0,0,0,0.9);
 }
 
 #button:hover {
   cursor: pointer;
   background: #666;
   background: -webkit-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
   background: -moz-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
   background: -ms-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
   background: -o-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
 }
 
 #button:active {
   box-shadow: inset 0 1px 12px rgba(0,0,0,0.9);
   background: #444;
 }
 
 #label {
   font: 30px verdana,arial,sans-serif bold;
   text-align: center;
   text-shadow: 0 1px 1px #fff;
   height: 70px;
   line-height: 70px;   
   margin: 16px auto 0;
 }
 form {
   height: 38px;   
   position: relative;
 }
 button, input {
   font-weight: bold;
   font-size: 15px;
 }
  
 input[type="text"] {
   background: #fff;
   border: 1px solid #bbb;
   border-radius: 3px;
   box-sizing: border-box;
   -moz-box-sizing: border-box;   
   padding: 0 10px 0 10px;
   *padding: 0; /* IE7 hack */
   width: 100%;
   height: 100%;
   outline: none;
   position: absolute;
 }
 
 button[type="submit"] {
   position: absolute;
   right: -45px;
   width: 45px;
   height: 38px;
 }