/*==LICENSE==
This file is part of Musec.
Copyright (C) 2013 Florian Meißner

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
==LICENSE==*/

body {
    background-image: url(bg.png);
    background-size: 100% 100%;
    background-attachment: fixed;
    color: #EEEEEE;
    font-family: 'Droid Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4em;
}

#container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h1 {
    font-size: 3em;
    text-shadow: 0px 0px 6px #222222;
}

table {
    margin:auto;
    max-width: 1000px;
    box-shadow: 0px 0px 25px #222222;
    border-radius: 12px;
    border-spacing: 0px;
    background-color: rgba(238, 238, 238, 0.2);
}

th, td {
    padding: 6px;
    border: 1px solid #EEEEEE;
}

th {
    font-size: 1.4em;
    text-shadow: 0px 0px 6px #222222;
}

tbody.userentry tr { transition: background-color 0.5s ease; }
tbody.userentry:hover tr:first-child { background-color: rgba(238, 238, 238, 0.5); }

tbody:first-child  tr:first-child th:first-child { border-top-left-radius: 12px; }
tbody:first-child  tr:first-child th:last-child { border-top-right-radius: 12px; }
tbody:last-child  tr:last-child td:first-child { border-bottom-left-radius: 12px; }
tbody:last-child  tr:last-child td:last-child { border-bottom-right-radius: 12px; }

.left { text-align: left; }
img { border: none; }
a:link { color:#FFCC33; }
a:visited { color:#CC8811; }
a:hover { color:#FFEEAA; }
a:active { color:#FFFFCC; }
