-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (57 loc) · 1.88 KB
/
styles.css
File metadata and controls
62 lines (57 loc) · 1.88 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
html {
display:flex;
margin:auto;
justify-content: center;
}
canvas {
border-radius: 12px;
border: 8px solid #241d13;
}
#button-holder {
display:flex;
justify-content: center;
}
#txt {
display:flex;
justify-content: left;
}
.btn {
-moz-box-shadow:inset -23px 27px 4px -15px #b54b3a;
-webkit-box-shadow:inset -23px 27px 4px -15px #b54b3a;
box-shadow:inset -23px 27px 4px -15px #b54b3a;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #a73f2d), color-stop(1, #b34332));
background:-moz-linear-gradient(top, #a73f2d 5%, #b34332 100%);
background:-webkit-linear-gradient(top, #a73f2d 5%, #b34332 100%);
background:-o-linear-gradient(top, #a73f2d 5%, #b34332 100%);
background:-ms-linear-gradient(top, #a73f2d 5%, #b34332 100%);
background:linear-gradient(to bottom, #a73f2d 5%, #b34332 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a73f2d', endColorstr='#b34332',GradientType=0);
background-color:#a73f2d;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
border:7px solid #241d13;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Trebuchet MS;
font-size:11px;
font-weight:bold;
padding:7px 13px;
text-decoration:none;
text-shadow:0px 6px 0px #7a2a1d;
}
.btn:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b34332), color-stop(1, #a73f2d));
background:-moz-linear-gradient(top, #b34332 5%, #a73f2d 100%);
background:-webkit-linear-gradient(top, #b34332 5%, #a73f2d 100%);
background:-o-linear-gradient(top, #b34332 5%, #a73f2d 100%);
background:-ms-linear-gradient(top, #b34332 5%, #a73f2d 100%);
background:linear-gradient(to bottom, #b34332 5%, #a73f2d 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b34332', endColorstr='#a73f2d',GradientType=0);
background-color:#b34332;
}
.btn:active {
position:relative;
top:1px;
}