[DEV] add CSS parsing
This commit is contained in:
57
test/example.css
Executable file
57
test/example.css
Executable file
@@ -0,0 +1,57 @@
|
||||
|
||||
/*
|
||||
* simple example
|
||||
*/
|
||||
|
||||
.myClasshello
|
||||
|
||||
#myElement_dd
|
||||
|
||||
:hover
|
||||
|
||||
div#galerie img {
|
||||
border: 1px solid #FFFFFF;
|
||||
}
|
||||
|
||||
div#galerieVignette{
|
||||
float: left;
|
||||
width:130px;
|
||||
height: 130px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 1px;
|
||||
align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div#galerieVignette:hover{
|
||||
border:1px solid #000;
|
||||
background: #8AAAE0;
|
||||
-moz-border-radius: 10px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
div#galerieSubGalerie:hover {
|
||||
margin: 5px 3px 5px 3px;
|
||||
padding:2px;
|
||||
float: left;
|
||||
width:250px;
|
||||
height: 110px;
|
||||
display: block;
|
||||
border:1px solid #333;
|
||||
background: #8AAAE0;
|
||||
}
|
||||
|
||||
div#galerieVignette div{
|
||||
margin: 3px;
|
||||
position: absolute;
|
||||
float: left;
|
||||
width:30px;
|
||||
height: 20px;
|
||||
display: none;
|
||||
/*background: #FFFFFF;
|
||||
opacity : 0.85;
|
||||
filter:alpha(opacity=85);*/
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user