-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (60 loc) · 2.1 KB
/
style.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
79
80
81
82
83
84
85
86
body {
background-color: #58acac;
}
#but {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
#content {
font-family: 'Love Ya Like A Sister', cursive;
font-size: 24px;
margin-bottom: 25px;
text-align: center;
}
#image {
text-align: center;
}
img {
height: 310px;
width: 350px;
}
.myButton {
-moz-box-shadow: 3px 4px 0px 0px #8a2a21;
-webkit-box-shadow: 3px 4px 0px 0px #8a2a21;
box-shadow: 3px 4px 0px 0px #8a2a21;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24437));
background: -moz-linear-gradient(top, #c62d1f 5%, #f24437 100%);
background: -webkit-linear-gradient(top, #c62d1f 5%, #f24437 100%);
background: -o-linear-gradient(top, #c62d1f 5%, #f24437 100%);
background: -ms-linear-gradient(top, #c62d1f 5%, #f24437 100%);
background: linear-gradient(to bottom, #c62d1f 5%, #f24437 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24437', GradientType=0);
background-color: #c62d1f;
-moz-border-radius: 18px;
-webkit-border-radius: 18px;
border-radius: 18px;
border: 1px solid #d02718;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: 'Bungee', cursive;
font-size: 19px;
padding: 3px 24px;
text-decoration: none;
text-shadow: 0px 1px 0px #810e05;
}
.myButton:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f24437), color-stop(1, #c62d1f));
background: -moz-linear-gradient(top, #f24437 5%, #c62d1f 100%);
background: -webkit-linear-gradient(top, #f24437 5%, #c62d1f 100%);
background: -o-linear-gradient(top, #f24437 5%, #c62d1f 100%);
background: -ms-linear-gradient(top, #f24437 5%, #c62d1f 100%);
background: linear-gradient(to bottom, #f24437 5%, #c62d1f 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24437', endColorstr='#c62d1f', GradientType=0);
background-color: #f24437;
}
.myButton:active {
position: relative;
top: 1px;
}