source: extensions/skeleton/trunk/template/style.css @ 24182

Last change on this file since 24182 was 24182, checked in by mistic100, 11 years ago

remove php end tags, remove at symbol in template, add example of class handlers, remove useless files

File size: 1012 bytes
Line 
1#test {
2  width:400px;
3  height:30px;
4  margin:100px auto;
5  padding:30px;
6  font-size:30px;
7  text-align:center;
8  color:#fff;
9  border:5px outset #000;
10  background: #45484d;
11  background: -moz-linear-gradient(top,  #45484d 0%, #000000 100%);
12  background: -webkit-linear-gradient(top,  #45484d 0%,#000000 100%);
13  background: -o-linear-gradient(top,  #45484d 0%,#000000 100%);
14  background: -ms-linear-gradient(top,  #45484d 0%,#000000 100%);
15  background: linear-gradient(to bottom,  #45484d 0%,#000000 100%);
16  text-shadow:0 0 4px white, 0 -5px 4px #FFFF33, 2px -10px 6px #FFDD33, -2px -15px 11px #FF8800, 2px -25px 18px #FF2200;
17  border-radius:95px 5px;
18  -moz-transform:rotate(5deg);
19  -webkit-transform:rotate(5deg);
20  -o-transform:rotate(5deg);
21  transform:rotate(5deg);
22  letter-spacing:10px;
23  box-shadow:10px 10px 10px rgba(0,0,0,0.5);
24  cursor:pointer;
25}
26#test:hover {
27  -moz-transform:rotate(175deg);
28  -webkit-transform:rotate(175deg);
29  -o-transform:rotate(175deg);
30  transform:rotate(175deg);
31}
Note: See TracBrowser for help on using the repository browser.