84 lines
1.6 KiB
CSS
84 lines
1.6 KiB
CSS
/* There's probably some stuff in here we don't need, and maybe some missing stuff we do need. We can clean it up incrementaly, just get the heavy lifting done for now */
|
|
|
|
aside {
|
|
border-radius: 0px 0px 20px 0px;}
|
|
|
|
|
|
.tab {
|
|
height: auto;
|
|
background-color: #f00;
|
|
color: #fff !important;
|
|
font-weight: bold;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 20px;
|
|
margin: 0;
|
|
width: auto;
|
|
margin-left: 8px;
|
|
padding: 4px;
|
|
text-align: center;
|
|
}
|
|
.tab:hover, .tab.active:hover {
|
|
background: #d00;
|
|
color: #fff;
|
|
;
|
|
}
|
|
.tab:active {
|
|
background: #fff;
|
|
color: #f00;
|
|
}
|
|
.tab.active {
|
|
background: #f00;
|
|
color: #fff;
|
|
box-shadow: 3px 3px 3px #333 inset;
|
|
padding: 5px; /* strageness of the human mind - has to be larger than inactive tabs, or it looks smaller than them */
|
|
}
|
|
|
|
|
|
|
|
.wall-item-content-wrapper {
|
|
position: relative;
|
|
border-radius: 10px;
|
|
box-shadow: 8px 8px 8px #000;
|
|
border: 1px solid #eec;
|
|
}
|
|
|
|
.wall-item-content-wrapper.comment {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.wall-item-like:hover, .wall-item-dislike:hover{
|
|
opacity: 1;
|
|
}
|
|
|
|
.wall-item-author {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.comment-edit-wrapper {
|
|
margin-top: 15px;
|
|
background: #ffffff;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
#profile-jot-submit {
|
|
background-color: #dd0000;
|
|
}
|
|
|
|
ul.menu-popup {
|
|
background: #dd0000;
|
|
color: #eec;
|
|
border-radius: 0px 0px 20px 20px;
|
|
z-index: 100000;
|
|
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
|
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
|
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
|
}
|
|
ul.menu-popup a {
|
|
color: #eec;
|
|
}
|
|
ul.menu-popup a:hover {
|
|
background-color: #eec;
|
|
color: #f00;
|
|
}
|