-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
35 lines (31 loc) · 1.12 KB
/
stylesheet.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
.btn {
background: #0099ff;
background-image: -webkit-linear-gradient(top, #0099ff, #00ff26);
background-image: -moz-linear-gradient(top, #0099ff, #00ff26);
background-image: -ms-linear-gradient(top, #0099ff, #00ff26);
background-image: -o-linear-gradient(top, #0099ff, #00ff26);
background-image: linear-gradient(to bottom, #0099ff, #00ff26);
-webkit-border-radius: 11;
-moz-border-radius: 11;
border-radius: 11px;
text-shadow: 1px 1px 3px #666666;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #60acdb;
background-image: -webkit-linear-gradient(top, #60acdb, #88d971);
background-image: -moz-linear-gradient(top, #60acdb, #88d971);
background-image: -ms-linear-gradient(top, #60acdb, #88d971);
background-image: -o-linear-gradient(top, #60acdb, #88d971);
background-image: linear-gradient(to bottom, #60acdb, #88d971);
text-decoration: none;
}
.center_div{
margin: 0 auto;
width:0% /* value of your choice which suits your alignment */
}
.margin-10{margin: 10px;}