-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (91 loc) · 3.06 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (91 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.wrapper {
margin: 30% auto;
height:300px;
width:300px;
}
.buttonon {
height:50%;
width:100%;
box-shadow:inset 0px 0px 0px 0px #d9fbbe;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b8e356), color-stop(1, #a5cc52) );
background:-moz-linear-gradient( center top, #b8e356 5%, #a5cc52 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8e356', endColorstr='#a5cc52');
background-color:#b8e356;
-webkit-border-top-left-radius:1000px;
-moz-border-radius-topleft:1000px;
border-top-left-radius:1000px;
-webkit-border-top-right-radius:1000px;
-moz-border-radius-topright:1000px;
border-top-right-radius:1000px;
-webkit-border-bottom-right-radius:0px;
-moz-border-radius-bottomright:0px;
border-bottom-right-radius:0px;
-webkit-border-bottom-left-radius:0px;
-moz-border-radius-bottomleft:0px;
border-bottom-left-radius:0px;
text-indent:0;
border:2px solid #83c41a;
display:inline-block;
color:#ffffff;
font-family:Trebuchet MS;
font-size:50px;
font-weight:bold;
font-style:normal;
line-height:150px;
text-decoration:none;
text-align:center;
text-shadow:0px 0px 2px #86ae47;
}
.buttonon:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a5cc52), color-stop(1, #b8e356) );
background:-moz-linear-gradient( center top, #a5cc52 5%, #b8e356 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5cc52', endColorstr='#b8e356');
background-color:#a5cc52;
}.buttonon:active {
position:relative;
top:1px;
}
.buttonoff {
height:50%;
width:100%;
-moz-box-shadow:inset 0px 0px 0px 0px #f5978e;
-webkit-box-shadow:inset 0px 0px 0px 0px #f5978e;
box-shadow:inset 0px 0px 0px 0px #f5978e;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f) );
background:-moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f');
background-color:#f24537;
-webkit-border-top-left-radius:0px;
-moz-border-radius-topleft:0px;
border-top-left-radius:0px;
-webkit-border-top-right-radius:0px;
-moz-border-radius-topright:0px;
border-top-right-radius:0px;
-webkit-border-bottom-right-radius:1000px;
-moz-border-radius-bottomright:1000px;
border-bottom-right-radius:1000px;
-webkit-border-bottom-left-radius:1000px;
-moz-border-radius-bottomleft:1000px;
border-bottom-left-radius:1000px;
text-indent:0;
border:2px solid #d02718;
display:inline-block;
color:#ffffff;
font-family:Trebuchet MS;
font-size:50px;
font-weight:bold;
font-style:normal;
line-height:150px;
text-decoration:none;
text-align:center;
text-shadow:0px 0px 2px #810e05;
}
.buttonoff:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537) );
background:-moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537');
background-color:#c62d1f;
}.buttonoff:active {
position:relative;
bottom:1px;
}