aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2012-12-12 21:14:51 +0000
committerThomas Willingham <founder@kakste.com>2012-12-12 21:14:51 +0000
commit53770201d2a129e587de69016251156f667de95e (patch)
tree551d48913809aad9b5ec827d8694bbe129a0b7bb /view/theme
parent84ea78ee16cd14fced58f80198d1dbe747d7ebe1 (diff)
downloadvolse-hubzilla-53770201d2a129e587de69016251156f667de95e.tar.gz
volse-hubzilla-53770201d2a129e587de69016251156f667de95e.tar.bz2
volse-hubzilla-53770201d2a129e587de69016251156f667de95e.zip
Redbasic progression.
Diffstat (limited to 'view/theme')
-rw-r--r--view/theme/redbasic/css/style.css69
-rw-r--r--view/theme/redbasic/img/nav-bg.jpgbin0 -> 697 bytes
2 files changed, 53 insertions, 16 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 33c100903..4e99f2ba0 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -19,6 +19,14 @@ abbr {
border-bottom: none;
}
+/*Should we be doing this here, or should we be changing default.css? */
+
+aside {
+box-shadow: 3px 3px 3px #ccc;
+border: none;
+border-radius: 0px 0px 20px 0px;
+width: 210px;
+}
/* icons */
.icon {
@@ -112,7 +120,7 @@ blockquote {
nav {
display: block;
/* margin: 0px 10%; */
- border-bottom: 1px solid #babdb6;
+ border-bottom: 1px solid #d00;
}
nav #site-location {
color: #888a85;
@@ -337,6 +345,7 @@ div.wall-item-content-wrapper.shiny {
font-weight: bold;
border: solid 1px #ccc;
box-shadow: 5px 5px 5px #666 inset;
+ border-radius: 20px;
}
#jot-title::-webkit-input-placeholder{font-weight: normal;}
@@ -956,14 +965,21 @@ input#dfrn-url {
margin-left: 50px;
}
+/* Give the top level post bigger shadows than the comments. This makes them appear "higher" and the comments "lower", which separates posts from each other reasonably without literally drawing a line under it */
+
.wall-item-content-wrapper {
- margin-top: 10px;
- border-left: 1px solid #e0e0e0;
+ margin-top: 30px;
position: relative;
-}
+ background: #fff;
+ border-radius: 20px;
+ box-shadow: 15px 15px 15px #111;
-.thread-wrapper .thread-wrapper {
+}
+.wall-item-content-wrapper.comment {
+ background: #fff;
+ border-left: 1px solid #e0e0e0;
margin-left: 50px;
+ box-shadow: 5px 5px 5px #222;
}
.thread-end-wrapper {
@@ -1126,13 +1142,8 @@ input#dfrn-url {
}
.wall-item-content {
float: left;
- /*width: 450px;*/
margin-left: 10px;
- /*margin-bottom: 20px;*/
- /*padding: 20px;*/
-/* max-height: 400px; */
-/* overflow-x: auto; */
-/* overflow-y: auto; */
+ overflow: auto;
}
.wall-item-content img {
@@ -1141,7 +1152,9 @@ input#dfrn-url {
box-shadow: 8px 8px 8px #666;
}
-
+.wall-item-content img.smiley {
+ box-shadow: none;
+}
.wall-item-title {
float: left;
font-weight: bold;
@@ -1170,8 +1183,14 @@ width: 90%;
background-position: 0 -20px;
background-repeat: repeat-x;
background: #eee;
- padding: 5px 10px;
+ padding: 5px 10px;
+ border-radius: 0px 0px 20px 20px;
}
+
+.wall-item-like {
+margin: 15px;
+}
+
.wall-item-author {
margin-top: 10px;
}
@@ -1213,7 +1232,7 @@ width: 90%;
.comment-edit-text-empty {
color: gray;
height: 1.5em;
- width: 175px;
+ width: 80%; /*Too wide? */
overflow: auto;
margin-bottom: 10px;
}
@@ -1679,7 +1698,7 @@ tr.mceLast {
padding: 8px;
width: 90%;
-moz-border-radius: 5px;
- border-radius: 3px;
+ border-radius: 20px;
box-shadow: 4px 4px 3px 0 #666 inset;
}
#profile-jot-text:hover {
@@ -3099,6 +3118,23 @@ nav {
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
+
+/* TODO find a better way to do this without different code for every single browser. */
+
+ background-image: linear-gradient(bottom, #f00 26%, #b00 82%);
+ background-image: -o-linear-gradient(bottom, #f00 26%, #b00 82%);
+ background-image: -moz-linear-gradient(bottom, #f00 26%, #b00 82%);
+ background-image: -webkit-linear-gradient(bottom, #f00 26%, #b00 82%);
+ background-image: -ms-linear-gradient(bottom, #f00 26%, #b00 82%);
+
+ background-image: -webkit-gradient(
+linear,
+left bottom,
+left top,
+color-stop(0.26, #f00),
+color-stop(0.82, #b00)
+);
+
}
nav a,
nav a:active,
@@ -3208,7 +3244,8 @@ ul.menu-popup a {
text-decoration: none;
}
ul.menu-popup a:hover {
- background-color: #ccff42;
+ background-color: #eec;
+ color: #d00;
}
ul.menu-popup .menu-sep {
border-top: 1px solid #9eabb0;
diff --git a/view/theme/redbasic/img/nav-bg.jpg b/view/theme/redbasic/img/nav-bg.jpg
new file mode 100644
index 000000000..d0681fd71
--- /dev/null
+++ b/view/theme/redbasic/img/nav-bg.jpg
Binary files differ