infobox: add soft shadow
This commit is contained in:
parent
b84b68d9bd
commit
bf39ed62bd
Binary file not shown.
After Width: | Height: | Size: 56 B |
Binary file not shown.
Before Width: | Height: | Size: 91 B After Width: | Height: | Size: 6.0 KiB |
60
tt-rss.css
60
tt-rss.css
|
@ -542,40 +542,50 @@ div.helpResponse {
|
|||
color : white;
|
||||
}
|
||||
|
||||
/* shadow stuff from http://www.sixapart.com/pronet/articles/ydsf_-_robust_c.html */
|
||||
|
||||
#infoBox {
|
||||
border-width : 1px 1px 1px 1px;
|
||||
border-style : solid;
|
||||
border-color : #99d67a;
|
||||
position : relative;
|
||||
bottom : 2px;
|
||||
right : 2px;
|
||||
padding-bottom : 5px;
|
||||
background-color : #f8fcf5;
|
||||
}
|
||||
|
||||
/*
|
||||
#infoBoxTitle {
|
||||
border-width : 1px 1px 1px 1px;
|
||||
border-style : solid;
|
||||
border-color : #88b0f0;
|
||||
background-color : #88b0f0;
|
||||
padding : 2px;
|
||||
color : white;
|
||||
}
|
||||
|
||||
#infoBox {
|
||||
border-width : 1px 1px 1px 1px;
|
||||
border-style : solid;
|
||||
border-color : #88b0f0;
|
||||
position: relative;
|
||||
bottom : 2px;
|
||||
right : 2px;
|
||||
padding-bottom : 5px;
|
||||
background-color : #f7faff;
|
||||
} */
|
||||
overflow : hidden;
|
||||
left : -4px;
|
||||
top : -4px;
|
||||
}
|
||||
|
||||
html>body #infoBox {
|
||||
left : -10px;
|
||||
top : -10px;
|
||||
margin : 0;
|
||||
}
|
||||
|
||||
#infoBoxShadow:before, #infoBoxShadow:after {
|
||||
content : " ";
|
||||
display : block;
|
||||
background : inherit;
|
||||
width : 10px;
|
||||
height : 10px;
|
||||
}
|
||||
|
||||
#infoBoxShadow:before {
|
||||
position : absolute;
|
||||
top : 0;
|
||||
right : 0;
|
||||
margin : -10px 0 0 auto;
|
||||
background-position : right top;
|
||||
}
|
||||
|
||||
#infoBoxShadow:after {
|
||||
margin : -10px 0 0 -10px;
|
||||
background-position : left bottom;
|
||||
}
|
||||
|
||||
|
||||
#infoBoxShadow {
|
||||
background-image : url("images/shadow.png");
|
||||
background-position : bottom right;
|
||||
left : 25%;
|
||||
top : 30%;
|
||||
width : 50%;
|
||||
|
|
Loading…
Reference in New Issue