Jubilar Django: borrar el portal antiguo, la web ya la sirve Next
El cutover se hizo hoy: Caddy manda www.nightspire.gg a :3001 (Next), así que Django se quedó sin dominio y sin uso. Se comprobó antes de borrar que nada dependía de él: ninguna referencia a :8001 en Caddy, el timer de reconciliación llama a Next, DJANGO_API_BASE no lo leía ni una línea del código (se quita también de la unidad de systemd), web-next/public es autónomo (736 ficheros reales, 0 symlinks) y no hay ni una referencia a /static/. Con Django parado la web siguió dando 200 en todas las rutas. Se va: home/, novawow/, forum/, wotlk_db/, frontend/ (las islas React que Next sustituyó), static/, staticfiles/, manage.py, requirements.txt, db.sqlite3 y el Docker de Django. Se quedan docs/ y sql/: no son código Django sino documentación y esquemas, y sql/forum_schema.sql describe la BD acore_web que Next usa hoy. La BASE DE DATOS no se toca. django_wow y sus 41 tablas home_* son ahora de Next, que las consulta con SQL directo. El nombre se queda por historia. README reescrito: describía cómo montar un Django que ya no existe (venv, manage.py migrate, gunicorn, Docker). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,847 +0,0 @@
|
||||
.nowrap {
|
||||
white-space: nowrap;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.wsa-tbl {
|
||||
border-spacing:0
|
||||
}
|
||||
|
||||
.wsa-tbl th {
|
||||
border-bottom:2px solid #333;
|
||||
color:#fff;
|
||||
font-size:15px;
|
||||
padding:0 0 3px 0;
|
||||
text-align:left
|
||||
}
|
||||
|
||||
.wsa-tbl td {
|
||||
padding:0 5px 0 0
|
||||
}
|
||||
|
||||
.wsa-tbl td:last-child {
|
||||
padding:0
|
||||
}
|
||||
|
||||
.wsa-list {
|
||||
color:#ccc
|
||||
}
|
||||
|
||||
.wsa-list td {
|
||||
vertical-align:text-top
|
||||
}
|
||||
|
||||
.wsa-list td {
|
||||
padding-right:25px
|
||||
}
|
||||
|
||||
.wsa-list td.nopad {
|
||||
padding-right:0
|
||||
}
|
||||
|
||||
.wsa-list tr {
|
||||
line-height:20px
|
||||
}
|
||||
|
||||
.wsa-list .checkmark {
|
||||
padding:0;
|
||||
width:18px
|
||||
}
|
||||
|
||||
.wsa-check {
|
||||
background:url(../images/ui/check2.png) no-repeat 0 -11px;
|
||||
height:20px;
|
||||
width:15px
|
||||
}
|
||||
|
||||
.wsa-earned {
|
||||
color:#777
|
||||
}
|
||||
|
||||
.wsa-earned .wsa-check {
|
||||
background-position:-15px -11px
|
||||
}
|
||||
|
||||
.wsa-earned .wsa-count {
|
||||
background-color:#aaa;
|
||||
color:#242424
|
||||
}
|
||||
|
||||
/* Generic - Sprites */
|
||||
.reply-detach, .reply-delete, .reply-report, .reply-edit {
|
||||
background: url(../images/ui/sprite3.png);
|
||||
text-indent: -10000px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vote-column .upvote, .vote-column .downvote {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vote-column {
|
||||
width: 60px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.main-body {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.vote-column .upvote, .vote-column .downvote {
|
||||
margin: 5px auto;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.vote-column .upvote {
|
||||
margin-top: 10px !important;
|
||||
filter:alpha(opacity=60);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
||||
opacity:.2;
|
||||
}
|
||||
|
||||
.vote-column .upvote:hover {
|
||||
filter:alpha(opacity=100);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
opacity:0.5;
|
||||
}
|
||||
|
||||
.vote-column .upvote[data-hasvoted=true] {
|
||||
background-position: 0 -16px;
|
||||
filter:alpha(opacity=100);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
opacity:0.5;
|
||||
}
|
||||
|
||||
.vote-column .downvote {
|
||||
background-position: 0 -48px;
|
||||
filter:alpha(opacity=60);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
||||
opacity:.2;
|
||||
}
|
||||
|
||||
.vote-column .downvote:hover {
|
||||
filter:alpha(opacity=100);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.vote-column .downvote[data-hasvoted=true] {
|
||||
background-position: 0 -32px;
|
||||
filter:alpha(opacity=100);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.vote-column .rating, .vote-column .rating-up, .vote-column .rating-down {
|
||||
color: #A8A8A8;
|
||||
font-size: 18px;
|
||||
margin: 3px 0;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.vote-column .rating-up {
|
||||
color: Green;
|
||||
}
|
||||
|
||||
.vote-column .rating-down {
|
||||
color: #bb5b26;
|
||||
}
|
||||
|
||||
.vote-column .rating-separator {
|
||||
border-top: 1px solid silver;
|
||||
width: 20px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.vote-column .rating {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.comment-controls {
|
||||
text-align: right;
|
||||
color: #DDDDDD;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.comment-controls span, .comment-controls span a {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
.comment-header .comment-author {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.comment-header .comment-author a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.comment-header .comment-author a.q0 {
|
||||
color: #bbbbbb !important;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.comment-header .comment-author a.q0:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.comment-replies-control {
|
||||
margin: 10px 0 10px 10px !important;
|
||||
font-size: 13px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
background: #302521;
|
||||
border: 1px solid #302521;
|
||||
padding: 4px 8px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.comment-replies-control:hover {
|
||||
background-color: #555;
|
||||
}
|
||||
|
||||
.comment-sticky {
|
||||
display: block;
|
||||
background-color: green;
|
||||
border-radius: 5px;
|
||||
cursor: help;
|
||||
font-family: Verdana;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.comment-replies {
|
||||
margin: 10px 0 0 10px;
|
||||
padding: 10px 0;
|
||||
background-color: #1d1d1d;
|
||||
}
|
||||
|
||||
.comment-replies form .ajax-loader {
|
||||
display: block;
|
||||
margin-left: 13px;
|
||||
margin-top: 10px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.comment-replies textarea {
|
||||
width: 100%;
|
||||
background-color: #121212;
|
||||
border: 2px solid #302521;
|
||||
color: #b1997f;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.comment-replies textarea:focus-visible {
|
||||
border-color: #302521;
|
||||
outline: transparent;
|
||||
}
|
||||
|
||||
.comment-replies form input {
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.comment-replies td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.comment-replies .q11 {
|
||||
color: #AA8968 !important;
|
||||
}
|
||||
|
||||
.comment-reply-row {
|
||||
border-bottom: 2px solid #121212;
|
||||
}
|
||||
|
||||
.comment-reply-row:last-child {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.reply-controls {
|
||||
width: 30px;
|
||||
padding-left: 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.reply-text {
|
||||
padding: 6px;
|
||||
overflow:auto;
|
||||
word-wrap:break-word;
|
||||
}
|
||||
|
||||
.comment .reply-text {
|
||||
overflow: auto;
|
||||
overflow-wrap: break-word;
|
||||
padding: 6px 16px 6px 6px;
|
||||
}
|
||||
|
||||
.reply-rating {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin: 3px 0;
|
||||
color: #A8A8A8;
|
||||
}
|
||||
|
||||
.q12 {
|
||||
color: #BD5F00 !important;
|
||||
}
|
||||
|
||||
.reply-rating-fair {
|
||||
color: #008200;
|
||||
}
|
||||
|
||||
.reply-rating-good {
|
||||
color: #1EC000;
|
||||
}
|
||||
|
||||
.reply-rating-great {
|
||||
color: #1EFF00;
|
||||
}
|
||||
|
||||
.comment-reply-author {
|
||||
color: #888888;
|
||||
white-space: nowrap;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.comment-reply-author a.when, .comment-reply-author a.when:hover {
|
||||
color: #888888;
|
||||
white-space: nowrap;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.comment-reply-author a.when:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.comment-blue b {
|
||||
color: White !important;
|
||||
}
|
||||
|
||||
.reply-detach, .reply-delete, .reply-report, .reply-edit {
|
||||
display: inline-block;
|
||||
height: 13px;
|
||||
width: 13px;
|
||||
line-height: 12px;
|
||||
opacity: 0.35;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.comment .reply-upvote, .comment .reply-downvote {
|
||||
width: 13px;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
cursor: default;
|
||||
margin: 0 auto;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.comment .reply-upvote[data-canvote=true], .comment .reply-downvote[data-canvote=true] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.reply-detach {
|
||||
background-position: -30px -13px;
|
||||
}
|
||||
|
||||
.reply-delete {
|
||||
background-position: -30px 0;
|
||||
}
|
||||
|
||||
.reply-report {
|
||||
background-position: -30px -39px;
|
||||
height: 10px;
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
.reply-edit {
|
||||
height: 14px;
|
||||
width: 13px;
|
||||
background-position: -30px -25px;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.reply-upvote[data-hasvoted=true] {
|
||||
background-position:-43px -6px;
|
||||
}
|
||||
|
||||
.reply-downvote[data-hasvoted=true] {
|
||||
background-position:-43px -12px;
|
||||
}
|
||||
|
||||
.reply-detach[data-hover=true], .reply-delete[data-hover=true], .reply-report[data-hover=true], .reply-edit[data-hover=true] {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.reply-upvote[data-canvote=true]:hover, .reply-upvote[data-hasvoted=true], .reply-downvote[data-canvote=true]:hover, .reply-downvote[data-hasvoted=true], .reply-detach:hover, .reply-delete:hover, .reply-report:hover, .reply-edit:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.dragged {
|
||||
z-index: 1000 !important;
|
||||
opacity: 0.35;
|
||||
filter: alpha(opacity=35);
|
||||
}
|
||||
|
||||
.dragged .iconsmall, .dragged .iconmedium {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.stars {display:block;font-size:13px;margin:0 auto;white-space:normal;overflow:hidden;position:relative}
|
||||
.infobox .stars {margin:0}
|
||||
.stars.rated {padding-right:14px}
|
||||
.stars.max-5 {width:66px}
|
||||
.stars.max-10 {width:131px}
|
||||
.stars b {background:url(../images/ui/stars-ondark.png) 0 -96px no-repeat;float:right;height:16px;line-height:16px}
|
||||
.stars.ratable span {cursor:pointer}
|
||||
.stars.ratable span:hover b, .stars.rated b {background-position:0 -32px} /* maybe remove 3rd? */
|
||||
.stars i {padding:0 0 0 18px}
|
||||
.stars i i {margin-left:-5px;padding:0;visibility:hidden}
|
||||
.stars.ratable span:hover b, .stars.ratable span:hover b.half {background-position:0 -96px !important}
|
||||
.stars.ratable span b:hover, .stars.ratable span b.half:hover {background-position:0 -32px !important}
|
||||
.stars .clear {background:url(../images/ui/gray-x.png);display:block;height:10px;;position:absolute;right:0;top:4px;width:9px}
|
||||
.stars .clear:hover {background-position:bottom}
|
||||
.stars .info {clear:both;font-size:11px}
|
||||
.stars.rated .info {margin-right:-14px}
|
||||
|
||||
.stars-1 b {background-position:0 0}
|
||||
.stars-1 b b {background-position:0 -96px !important}
|
||||
.stars-2 b {background-position:0 0}
|
||||
.stars-2 b b b {background-position:0 -96px !important}
|
||||
.stars-3 b {background-position:0 0}
|
||||
.stars-3 b b b b {background-position:0 -96px !important}
|
||||
.stars-4 b {background-position:0 0}
|
||||
.stars-4 b b b b b {background-position:0 -96px !important}
|
||||
.stars-5 b {background-position:0 0}
|
||||
.stars-5 b b b b b b {background-position:0 -96px !important}
|
||||
.stars-6 b {background-position:0 0}
|
||||
.stars-6 b b b b b b b {background-position:0 -96px !important}
|
||||
.stars-7 b {background-position:0 0}
|
||||
.stars-7 b b b b b b b b {background-position:0 -96px !important}
|
||||
.stars-8 b {background-position:0 0}
|
||||
.stars-8 b b b b b b b b b {background-position:0 -96px !important}
|
||||
.stars-9 b {background-position:0 0}
|
||||
.stars-9 b b b b b b b b b b {background-position:0 -96px !important}
|
||||
.stars-10 b {background-position:0 0}
|
||||
.stars-10 b b b b b b b b b b b {background-position:0 -96px !important}
|
||||
.stars b.half {background-position:0 -16px !important}
|
||||
.stars.rated b.half {background-position:0 -48px !important}
|
||||
|
||||
.ie6 .stars {_margin-bottom:-2px;zoom:100%}
|
||||
.ie6 .stars * {zoom:100%}
|
||||
.ie7 .stars {_margin-bottom:-2px;zoom:100%}
|
||||
.ie7 .stars * {zoom:100%}
|
||||
.ie8 .stars {_margin-bottom:-2px;zoom:100%}
|
||||
.ie8 .stars * {zoom:100%}
|
||||
|
||||
.guide-sticky {
|
||||
background: url(../images/icons/sticky.gif) left center no-repeat;
|
||||
padding-left: 21px;
|
||||
}
|
||||
|
||||
.guide-new {
|
||||
background: url(../images/icons/new.png) left center no-repeat;
|
||||
padding-left: 21px;
|
||||
}
|
||||
|
||||
.infobox .guide-sticky {
|
||||
position: relative;
|
||||
left: -6px;
|
||||
}
|
||||
|
||||
#guiderating {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.iconlist-col {
|
||||
float: left;
|
||||
width: 31%;
|
||||
margin-right: 2%;
|
||||
}
|
||||
|
||||
.iconlist {
|
||||
border-collapse: collapse;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.iconlist ul {
|
||||
list-style-type: none;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.iconlist th {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.iconlist ul li {
|
||||
list-style-position: inside;
|
||||
list-style-type: square;
|
||||
padding-left: 13px !important;
|
||||
}
|
||||
|
||||
.iconlist td {
|
||||
padding: 4px 0 6px 0 !important;
|
||||
}
|
||||
|
||||
.iconlist var {
|
||||
font-size: 1px !important;
|
||||
}
|
||||
|
||||
.iconlist .iconsmall {
|
||||
margin-right: 4px !important;
|
||||
}
|
||||
|
||||
.iconlist a.disclosure-on, .iconlist a.disclosure-off {
|
||||
font-weight: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.iconlist .iconlist ul li {
|
||||
padding-left: 10px !important;
|
||||
}
|
||||
|
||||
.iconlist .iconlist th, .iconlist .iconlist td {
|
||||
font-size: 11px !important;
|
||||
}
|
||||
|
||||
.iconlist-col table th li {
|
||||
list-style-position: outside;
|
||||
padding: 0 !important;
|
||||
margin-left: 20px !important;
|
||||
}
|
||||
|
||||
/*
|
||||
Note: For IE6, only include things that break/distort the site in a major way, as we're not supposed to support IE6 anymore.
|
||||
*/
|
||||
|
||||
/*******/
|
||||
/* IE6 */
|
||||
/*******/
|
||||
|
||||
html.ie6 .layout {
|
||||
width: 1240px;
|
||||
}
|
||||
|
||||
html.ie6 .toptabs dt {
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
html.ie6 .menu .menu-outer,
|
||||
html.ie6 .home-featuredbox-links a {
|
||||
background: url(../images/deprecated/pixel.gif) no-repeat;
|
||||
}
|
||||
|
||||
html.ie6 .menu a {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******/
|
||||
/* IE7 */
|
||||
/*******/
|
||||
|
||||
/* html.ie7 ... */
|
||||
|
||||
|
||||
|
||||
/*******/
|
||||
/* IE8 */
|
||||
/*******/
|
||||
|
||||
/* html.ie8 ... */
|
||||
|
||||
|
||||
|
||||
/*************/
|
||||
/* IE6 + IE7 */
|
||||
/*************/
|
||||
|
||||
/* html.ie67 ... */
|
||||
|
||||
|
||||
|
||||
/*******************/
|
||||
/* IE6 + IE7 + IE8 */
|
||||
/*******************/
|
||||
|
||||
/* html.ie678 ... */
|
||||
|
||||
html.ie678 .line var {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.line {
|
||||
position: absolute;
|
||||
display: block;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.line var {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin: -2px 0 0 2px;
|
||||
display: block;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #181818;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
-o-transform-origin: 0 0;
|
||||
-moz-transform-origin: 0 0;
|
||||
-webkit-transform-origin: 0 0;
|
||||
-o-box-shadow: 0px 0px 3px black;
|
||||
/*-moz-box-shadow: 0px 0px 3px black;*/
|
||||
-webkit-box-shadow: 0px 0px 3px black;
|
||||
}
|
||||
|
||||
.line.flipped {
|
||||
-o-transform: scaleY(-1);
|
||||
-moz-transform: scaleY(-1);
|
||||
-webkit-transform: scaleY(-1);
|
||||
-ms-filter: "FlipV";
|
||||
filter: FlipV;
|
||||
}
|
||||
|
||||
.mapper .line var { background: #C8B94C; }
|
||||
.mapper .line-1 var { background: #73B85B; }
|
||||
.mapper .line-2 var { background: #D7563C; }
|
||||
.mapper .line-3 var { background: #47ACCD; }
|
||||
.mapper .line-4 var { background: #C844D0; }
|
||||
|
||||
.message-box {
|
||||
position: absolute;
|
||||
z-index: 1000;
|
||||
cursor: pointer;
|
||||
border:2px solid #666;
|
||||
-moz-border-radius:5px;
|
||||
-webkit-border-radius:5px;
|
||||
border-radius:5px;
|
||||
padding:15px 15px 10px 15px;
|
||||
background:url(../images/ui/blk.png) repeat;
|
||||
}
|
||||
|
||||
.message-box .message {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#noscript-bg {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: black;
|
||||
opacity: 0.8;
|
||||
filter: alpha(opacity=80);
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
#noscript-text {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
top: 30%;
|
||||
font-size: 18px;
|
||||
line-height: 1.5em;
|
||||
z-index: 10000;
|
||||
padding-top: 70px;
|
||||
background: url(../images/logos/header.png) center top no-repeat;
|
||||
}
|
||||
|
||||
#noscript-text b {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
/*
|
||||
CSS tweaks for Premium users
|
||||
*/
|
||||
|
||||
/*
|
||||
body.premium ...
|
||||
*/
|
||||
|
||||
body.premium-logo .home-logo, body.premium-logo .home-logo a {
|
||||
background-image: url(../images/logos/special/premium/home.webp) !important;
|
||||
width: 261px !important;
|
||||
height: 139px !important;
|
||||
margin: 0 auto 20px auto !important;
|
||||
}
|
||||
|
||||
body.premium-logo .header-logo {
|
||||
background-image: url(../images/logos/special/premium/header.gif) !important;
|
||||
width: 179px !important;
|
||||
height: 96px !important;
|
||||
top: 5px !important;
|
||||
}
|
||||
|
||||
.linklist .repcount {
|
||||
color: #666666;
|
||||
display: inline;
|
||||
font-size: 11px;
|
||||
margin: 0 0.8em 0 0;
|
||||
}
|
||||
|
||||
.linklist .repcount a, .linklist .repcount a:hover {
|
||||
color: #0C9722;
|
||||
font-size: 11px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.linklist a.votecount, .linklist a.votecount:hover {
|
||||
background: url(../images/ui/check3.png) no-repeat scroll left center transparent;
|
||||
color: #FFFFFF;
|
||||
font-size: 11px;
|
||||
margin: 0;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.vote-comment .comment-body {
|
||||
border-left: 14px solid #111111;
|
||||
padding: 10px;
|
||||
color: #999999;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.vote-comment {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.vote-comment .votes-left {
|
||||
color: #AAAAAA;
|
||||
margin-bottom: 5px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.vote-comment .vote-reason {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
div.screenshotviewer {
|
||||
padding: 10px 10px 0 10px;
|
||||
background-color: #130c09;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen {
|
||||
background-color: #000;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen .screenshotviewer-page-wrapper a {
|
||||
display: block;
|
||||
font-size: 48px;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
top: 0;
|
||||
width: 100px;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
a.screenshotviewer-next {
|
||||
left: 0;
|
||||
padding-right: 1000px;
|
||||
}
|
||||
|
||||
a.screenshotviewer-prev {
|
||||
padding-left: 1000px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
div.screenshotviewer-page-wrapper.screenshotviewer-prev-wrapper {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
div.screenshotviewer-page-wrapper.screenshotviewer-next-wrapper {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
div.screenshotviewer-page-wrapper {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
a.screenshotviewer-cover {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen .screenshotviewer-page-wrapper a .fa:before {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: calc(50% - 20px);
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen .screenshotviewer-page-wrapper a .fa {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen .screenshotviewer-page-wrapper a {
|
||||
color: #b1997f;
|
||||
}
|
||||
|
||||
div.screenshotviewer-screen .screenshotviewer-page-wrapper a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
a.screenshotviewer-cover span {
|
||||
position: static !important;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
a.screenshotviewer-original {
|
||||
float: right;
|
||||
display: block;
|
||||
padding: 10px 0 10px 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
a.screenshotviewer-close {
|
||||
float: right;
|
||||
display: block;
|
||||
padding: 10px 0 10px 10px;
|
||||
}
|
||||
|
||||
a.modelviewer-close {
|
||||
float: right;
|
||||
display: block;
|
||||
padding: 10px 0 10px 10px;
|
||||
}
|
||||
|
||||
div.screenshotviewer-from {
|
||||
padding-top: 6px;
|
||||
font-size: 13px;
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
div.screenshotviewer-from a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.screenshotviewer-caption {
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
padding: 5px 0 6px 0;
|
||||
}
|
||||
Reference in New Issue
Block a user