cops/style.css

227 lines
2.4 KiB
CSS
Raw Normal View History

2012-06-02 09:48:07 +03:00
html
{
font-family: sans-serif;
font-size: 1em;
padding:0px;
margin:0px;
background-color:lightgray;
}
.container
{
margin:auto;
width:100%;
max-width:800px;
background-color:white;
}
.head
{
color:white;
background-color:black;
width:100%;
height:64px;
}
img
{
margin:0;
padding:0;
border:0;
}
.headleft
{
float:left;
height:64px;
}
.headright
{
float:right;
height:64px;
}
.headcenter
{
margin:auto;
text-align:center;
font-size: 1.5em;
font-weight:bold;
height:64px;
display:table;
}
.headcenter p
{
display: table-cell;
vertical-align: middle;
text-align: center;
line-height: 100%;
}
.clearer
{
clear:both;
}
.entries
{
background-color:lightgray;
}
.entry
{
background-color:white;
border-bottom:1px double black;
display:block;
padding:2px;
cursor: pointer;
margin-bottom:5px;
}
.book
{
background-color:white;
border-bottom:1px double black;
min-height:80px;
margin-bottom:5px;
}
.navigation
{
display:none;
}
.entryTitle
{
font-weight:bold;
font-size: 1.1em;
}
.entryContent
{
font-style:italic;
font-size: 0.9em;
margin-left: 10px;
}
.cover
{
float:left;
padding:5px 10px;
min-width: 56px;
2012-06-24 09:51:49 +03:00
min-height: 70px;
2012-06-02 09:48:07 +03:00
}
.download
{
float:right;
}
.button
{
height:36px;
display: table;
width:80px;
margin:2px;
}
2012-06-02 09:48:07 +03:00
.button p, .button a
{
display: table-cell;
vertical-align: middle;
text-align: center;
}
#loading
{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background-color: #ccc;
filter: alpha(opacity=70);
opacity: 0.70;
text-align: center;
padding-top: 120px;
}
2012-06-12 09:27:31 +03:00
.entrySection
{
2012-06-12 23:46:54 +03:00
margin-top: 8px;
margin-bottom: 18px;
2012-06-17 14:50:33 +03:00
line-height: 1.5em;
2012-06-12 23:46:54 +03:00
}
.entrySection span
{
font-style:italic;
font-size: 1em;
}
2012-06-12 23:32:00 +03:00
.buttonEffect a
2012-06-12 09:27:31 +03:00
{
border-radius: 6px;
background: darkgray;
background: -moz-radial-gradient(#666, black);
background: -webkit-radial-gradient(#666, black);
background: -ms-radial-gradient(#666, black);
background: radial-gradient(#666, black);
color: #EEE;
2012-06-12 09:27:31 +03:00
text-decoration : none;
font-weight: bold;
}
2012-06-12 23:32:00 +03:00
.pad6 a
{
padding: 6px;
}
2012-06-12 23:46:54 +03:00
.pad6
{
display: inline;
}
2012-06-13 18:28:54 +03:00
.menu
{
float: right;
2012-07-01 22:17:19 +03:00
width : 250px;
}
2012-06-13 18:28:54 +03:00
.search
{
display:none;
2012-07-01 22:17:19 +03:00
width : 250px;
position: absolute;
background: white;
2012-06-13 18:28:54 +03:00
}
2012-06-13 22:21:13 +03:00
.search form
2012-06-13 18:28:54 +03:00
{
2012-06-13 22:21:13 +03:00
background-color: black;
2012-06-13 22:51:29 +03:00
margin-top: 3px;
border-radius: 6px;
}
2012-07-01 22:17:19 +03:00
.search input[type=text], .search select
2012-06-18 21:59:45 +03:00
{
vertical-align: middle;
2012-07-01 22:17:19 +03:00
margin: 8px 10px;
2012-06-18 21:59:45 +03:00
}
2012-07-01 22:17:19 +03:00
.search input[type=image], .search img
2012-06-18 21:59:45 +03:00
{
2012-07-01 22:17:19 +03:00
vertical-align: middle;
float:right;
padding: 3px 2px;
2012-06-18 21:59:45 +03:00
}
2012-06-13 22:51:29 +03:00
.bookpopup
{
min-width: 400px;
2012-06-13 18:28:54 +03:00
}