Redbasic progression.

This commit is contained in:
Thomas Willingham 2012-12-12 21:14:51 +00:00
parent 84ea78ee16
commit 53770201d2
2 changed files with 55 additions and 18 deletions

View File

@ -19,6 +19,14 @@ abbr {
border-bottom: none; 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 */ /* icons */
.icon { .icon {
@ -112,7 +120,7 @@ blockquote {
nav { nav {
display: block; display: block;
/* margin: 0px 10%; */ /* margin: 0px 10%; */
border-bottom: 1px solid #babdb6; border-bottom: 1px solid #d00;
} }
nav #site-location { nav #site-location {
color: #888a85; color: #888a85;
@ -337,6 +345,7 @@ div.wall-item-content-wrapper.shiny {
font-weight: bold; font-weight: bold;
border: solid 1px #ccc; border: solid 1px #ccc;
box-shadow: 5px 5px 5px #666 inset; box-shadow: 5px 5px 5px #666 inset;
border-radius: 20px;
} }
#jot-title::-webkit-input-placeholder{font-weight: normal;} #jot-title::-webkit-input-placeholder{font-weight: normal;}
@ -956,14 +965,21 @@ input#dfrn-url {
margin-left: 50px; margin-left: 50px;
} }
.wall-item-content-wrapper { /* 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 */
margin-top: 10px;
border-left: 1px solid #e0e0e0;
position: relative;
}
.thread-wrapper .thread-wrapper { .wall-item-content-wrapper {
margin-top: 30px;
position: relative;
background: #fff;
border-radius: 20px;
box-shadow: 15px 15px 15px #111;
}
.wall-item-content-wrapper.comment {
background: #fff;
border-left: 1px solid #e0e0e0;
margin-left: 50px; margin-left: 50px;
box-shadow: 5px 5px 5px #222;
} }
.thread-end-wrapper { .thread-end-wrapper {
@ -1126,13 +1142,8 @@ input#dfrn-url {
} }
.wall-item-content { .wall-item-content {
float: left; float: left;
/*width: 450px;*/
margin-left: 10px; margin-left: 10px;
/*margin-bottom: 20px;*/ overflow: auto;
/*padding: 20px;*/
/* max-height: 400px; */
/* overflow-x: auto; */
/* overflow-y: auto; */
} }
.wall-item-content img { .wall-item-content img {
@ -1141,7 +1152,9 @@ input#dfrn-url {
box-shadow: 8px 8px 8px #666; box-shadow: 8px 8px 8px #666;
} }
.wall-item-content img.smiley {
box-shadow: none;
}
.wall-item-title { .wall-item-title {
float: left; float: left;
font-weight: bold; font-weight: bold;
@ -1170,8 +1183,14 @@ width: 90%;
background-position: 0 -20px; background-position: 0 -20px;
background-repeat: repeat-x; background-repeat: repeat-x;
background: #eee; background: #eee;
padding: 5px 10px; padding: 5px 10px;
border-radius: 0px 0px 20px 20px;
} }
.wall-item-like {
margin: 15px;
}
.wall-item-author { .wall-item-author {
margin-top: 10px; margin-top: 10px;
} }
@ -1213,7 +1232,7 @@ width: 90%;
.comment-edit-text-empty { .comment-edit-text-empty {
color: gray; color: gray;
height: 1.5em; height: 1.5em;
width: 175px; width: 80%; /*Too wide? */
overflow: auto; overflow: auto;
margin-bottom: 10px; margin-bottom: 10px;
} }
@ -1679,7 +1698,7 @@ tr.mceLast {
padding: 8px; padding: 8px;
width: 90%; width: 90%;
-moz-border-radius: 5px; -moz-border-radius: 5px;
border-radius: 3px; border-radius: 20px;
box-shadow: 4px 4px 3px 0 #666 inset; box-shadow: 4px 4px 3px 0 #666 inset;
} }
#profile-jot-text:hover { #profile-jot-text:hover {
@ -3099,6 +3118,23 @@ nav {
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-moz-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); 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,
nav a:active, nav a:active,
@ -3208,7 +3244,8 @@ ul.menu-popup a {
text-decoration: none; text-decoration: none;
} }
ul.menu-popup a:hover { ul.menu-popup a:hover {
background-color: #ccff42; background-color: #eec;
color: #d00;
} }
ul.menu-popup .menu-sep { ul.menu-popup .menu-sep {
border-top: 1px solid #9eabb0; border-top: 1px solid #9eabb0;

Binary file not shown.

After

Width:  |  Height:  |  Size: 697 B