diff --git a/k4ever/buyable/templates/buyables/showItems.html b/k4ever/buyable/templates/buyables/showItems.html
index 4df3578..8f21541 100644
--- a/k4ever/buyable/templates/buyables/showItems.html
+++ b/k4ever/buyable/templates/buyables/showItems.html
@@ -9,9 +9,9 @@
|
-
- {{ item.name }}
- Details
+ |
+ {{ item.name }}
+ Details
|
Kaufen für {{ item.price|floatformat:2 }} € {% if item.hasDeposit %} (Ohne Pfand){% endif %}
diff --git a/k4ever/media/css/style.css b/k4ever/media/css/style.css
index b76ddc5..81e6159 100644
--- a/k4ever/media/css/style.css
+++ b/k4ever/media/css/style.css
@@ -38,10 +38,15 @@ body {
line-height: 1;
}
+
h1, h2, h3, h4, h5, h6, th {
clear: both;
font-weight: bold;
- font-family: "Istok Web", inherit;
+ text-align: center;
+ margin-bottom: 10px;
+/* Sans-Serif? Srsly???
+ font-family: "Istok Web", inherit; */
+
}
ol, ul, li {
@@ -396,7 +401,7 @@ table.showitem td.productImage img {
table.showitem th {
font-size: 20px;
text-align:center;
-}
+}*/
table.showitem td.name {
padding: 0 10px;
@@ -477,3 +482,20 @@ a.buyButton span {
background: url("img/payment.png") no-repeat center center transparent;
text-indent: -10000px;
}
+
+.content a {
+ color: #3398CC;
+ text-decoration: none;
+}
+
+.content a:hover {
+ color: white;
+ background: #3398CC;
+}
+
+.content a.button {
+ display: block;
+ margin-top: 7px;
+ padding: 0 10px;
+ text-align: center;
+}
|