This commit is contained in:
Paul Schneider 2017-03-10 16:42:57 +01:00
commit db2c7dccda
10 changed files with 74 additions and 94 deletions

View file

@ -1592,21 +1592,11 @@ pre code {
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
.container {
width: calc(100% - 22px);
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
padding-right: 15px;
padding-left: 15px;
@ -3062,9 +3052,9 @@ fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
color: #fff;
background-color: #222;
border-color: #aaa;
}
.btn-default:focus,
.btn-default.focus {
@ -3459,7 +3449,7 @@ fieldset[disabled] .btn-danger.active {
}
.btn-link {
font-weight: normal;
color: #337ab7;
color: #c470f0;
border-radius: 0;
}
.btn-link,
@ -3479,7 +3469,7 @@ fieldset[disabled] .btn-link {
}
.btn-link:hover,
.btn-link:focus {
color: #23527c;
color: #f9a6f9;
text-decoration: underline;
background-color: transparent;
}
@ -3487,7 +3477,7 @@ fieldset[disabled] .btn-link {
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777;
color: #ae8fae;
text-decoration: none;
}
.btn-lg,

File diff suppressed because one or more lines are too long

View file

@ -6,8 +6,8 @@ body {
background-color: #210912;
color:#999;
}
h1,h2,h3{color:#fff;}
h1,h2,h3,h4,h5,h6{color:#fff;}
.smalltofhol { max-height: 3em; max-width: 3em; float:left; margin:.5em; }
.price {
font-weight: bold;
font-size: x-large;
@ -32,34 +32,37 @@ h1,h2,h3{color:#fff;}
padding: 1em;
}
.blog a {
color: #9f9;
color: #FF8;
font-weight: 900;
}
.blog a:active,
.blog a:hover {
outline: 0;
color: #6C6;
color: #FAFA09;
}
tr.vpost {
background-color: #306020;
tr.visiblepost {
max-height: 3em;
}
tr.ipost {
background-color: #303030;
tr.hiddenpost {
background-color: #130414;
font-size: smaller;
max-height: 2em;
}
tr.vpost a {
a.bloglink {
font-weight: bold;
color: white;
text-shadow: 3px 3px 8px black;
text-shadow: 0px 0px 8px white;
}
tr.ipost a {
font-style: bold;
color: #b0b0b0;
text-shadow: 3px 3px 5px #505050;
a {
font-weight: 900;
color: #FF8;
}
a:active,
a:hover {
outline: 0;
color: #FAFA09;
}
.panel{
float: left;
padding:1em;
@ -76,15 +79,6 @@ select,
color: #333;
}
a {
font-weight: 900;
color: #9f9;
}
a:active,
a:hover {
outline: 0;
color: #6C6;
}
.jumbotron {
background-color: #502020;
padding: .5em;

File diff suppressed because one or more lines are too long