56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
|
|
||
|
/*
|
||
|
* mystyle4.css
|
||
|
* used by test72.ex and test138.ex
|
||
|
*/
|
||
|
|
||
|
GtkWindow {
|
||
|
background-image: url("../thumbnails/nature.jpg");
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
#frame1 {
|
||
|
border-style: none;
|
||
|
background-color: skyblue;
|
||
|
}
|
||
|
|
||
|
#frame2 {border-style: inset;}
|
||
|
|
||
|
#frame3 {
|
||
|
border-style: outset;
|
||
|
border-color: yellow;
|
||
|
}
|
||
|
|
||
|
#frame4 {
|
||
|
border-radius: 20px;
|
||
|
padding: 20px;
|
||
|
background-image:
|
||
|
-gtk-gradient (linear,
|
||
|
left top, right bottom,
|
||
|
from(@yellow), to(@blue));
|
||
|
}
|
||
|
#frame5 {
|
||
|
font: Ubuntu condensed bold 14;
|
||
|
border-color: blue;
|
||
|
border-radius: 20px;
|
||
|
box-shadow: inset 10px 5px 5px alpha(black,0.5);
|
||
|
background-image: url("../thumbnails/nature.jpg");
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
#frame6 {
|
||
|
border-color: cyan;
|
||
|
background-color: yellow;
|
||
|
background-image: url("../thumbnails/euphoria.gif");
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
transition:900ms ease-in-out;
|
||
|
}
|
||
|
|
||
|
#cowsay {
|
||
|
font: Purisa, Comic Sans bold 36;
|
||
|
color: red;
|
||
|
text-shadow: 1px 1px 0px blue, -2px -2px yellow;
|
||
|
}
|