118 lines
1.7 KiB
CSS
118 lines
1.7 KiB
CSS
/* COMIC NAVIGATION
|
|
Author: Philip M. Hofer (Frumph)
|
|
Style: Sci Fi
|
|
*/
|
|
|
|
#comic_navi_wrapper {
|
|
padding: 5px 0 5px 0;
|
|
}
|
|
|
|
#comic_navi {
|
|
display: table;
|
|
border-collapse: collapse;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.navi-comictitle {
|
|
text-align: center;
|
|
float: left;
|
|
display: inline-block;
|
|
padding-top: 26px;
|
|
}
|
|
|
|
.navi {
|
|
width: 60px;
|
|
padding: 56px 0 0 0;
|
|
display: block;
|
|
float: left;
|
|
overflow: hidden;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
color: #555;
|
|
}
|
|
|
|
.navi:hover {
|
|
background-position: -60px 0;
|
|
}
|
|
|
|
.navi-first {
|
|
margin: 0;
|
|
background: url('first.png') no-repeat;
|
|
}
|
|
|
|
.navi-prevchap {
|
|
background: url('prevchap.png') no-repeat;
|
|
}
|
|
|
|
.navi-prev {
|
|
margin-right: 10px;
|
|
background: url('prev.png') no-repeat;
|
|
}
|
|
|
|
.navi-buyprint {
|
|
border: none;
|
|
cursor: pointer;
|
|
background: url('buyprint.png') no-repeat;
|
|
}
|
|
|
|
.navi-buyprint:hover {
|
|
color: #f00;
|
|
}
|
|
|
|
.navi-buyprint-form {
|
|
width: 60px;
|
|
display: block;
|
|
float: left;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.navi-archive {
|
|
background: url('archive.png') no-repeat;
|
|
}
|
|
|
|
.navi-random {
|
|
background: url('random.png') no-repeat;
|
|
}
|
|
|
|
.navi-comments {
|
|
padding: 0;
|
|
background: url('comments.png') no-repeat;
|
|
}
|
|
|
|
a.navi-comments span {
|
|
width: 60px;
|
|
height: 56px;
|
|
position: relative;
|
|
display: block;
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
line-height: 50px;
|
|
color: #FFF;
|
|
}
|
|
|
|
a.navi-comments span:hover {
|
|
color: #860b04;
|
|
}
|
|
|
|
.navi-next {
|
|
margin-left: 10px;
|
|
background: url('next.png') no-repeat;
|
|
}
|
|
|
|
.navi-nextchap {
|
|
background: url('nextchap.png') no-repeat;
|
|
}
|
|
|
|
.navi-last {
|
|
margin: 0;
|
|
background: url('last.png') no-repeat;
|
|
}
|
|
|
|
.navi-void, .navi-void:hover {
|
|
color: #999;
|
|
background-position: -120px 0;
|
|
}
|
|
|
|
.comic-left .navi-prev, .comic-right .navi-prev, .comic-left .navi-next, .comic-right .navi-next {
|
|
} |