-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.css
78 lines (72 loc) · 3.74 KB
/
web.css
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
/*
Buttons
*/
.button {
display: inline-block;
padding: 8px 18px;
margin-right: 15px;
margin-bottom: 5px;
-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px;
-moz-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3); -webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3); box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3);
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
cursor: pointer;
outline: none !important;
overflow: visible;
}
.button:hover, .button:focus {
text-decoration:none;
}
.button-green {
color: #fff;
background: #a5bd24; /* Old browsers */
background: -moz-linear-gradient(top, #a5bd24 0%, #7dac38 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a5bd24), color-stop(100%,#7dac38)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #a5bd24 0%,#7dac38 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #a5bd24 0%,#7dac38 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #a5bd24 0%,#7dac38 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a5bd24', endColorstr='#7DAC38',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #a5bd24 0%,#7dac38 100%); /* W3C */
text-shadow: 0 1px 1px rgba(0,0,0,0.25);
border: 1px solid #781;
}
.button-green:hover,.button-green:focus {
color: #fff;
background: #5c8825; /* Old browsers */
background: -moz-linear-gradient(top, #8fbb44 0%, #5c8825 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8fbb44), color-stop(100%,#5c8825)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #8fbb44 0%,#5c8825 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #8fbb44 0%,#5c8825 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #8fbb44 0%,#5c8825 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fbb44', endColorstr='#5c8825',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #8fbb44 0%,#5c8825 100%); /* W3C */
border: 1px solid #670;
}
.button-blue {
color: #fff;
background: #39aad4; /* Old browsers */
background: -moz-linear-gradient(top, #41c4f4 0%, #39aad4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#41c4f4), color-stop(100%,#39aad4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #41c4f4 0%,#39aad4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #41c4f4 0%,#39aad4 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #41c4f4 0%,#39aad4 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#41c4f4', endColorstr='#39aad4',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #41c4f4 0%,#3a8fb6 100%); /* W3C */
text-shadow: 0 1px 1px rgba(0,0,0,0.25);
border: 1px solid #3a8fb6;
}
.button-blue:hover,.button-blue:focus {
color: #fff;
background: #0189bc; /* Old browsers */
background: -moz-linear-gradient(top, #14bcfb 0%, #0189bc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#14bcfb), color-stop(100%,#0189bc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #14bcfb 0%,#0189bc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #14bcfb 0%,#0189bc 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #14bcfb 0%,#0189bc 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14bcfb', endColorstr='#0189bc',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #14bcfb 0%,#0189bc 100%); /* W3C */
border: 1px solid #0370A2;
}