-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
39 lines (36 loc) · 1.21 KB
/
popup.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
.btn {
background: #08b2f0;
background-image: -webkit-linear-gradient(top, #08b2f0, #14a2e3);
background-image: -moz-linear-gradient(top, #08b2f0, #14a2e3);
background-image: -ms-linear-gradient(top, #08b2f0, #14a2e3);
background-image: -o-linear-gradient(top, #08b2f0, #14a2e3);
background-image: linear-gradient(to bottom, #08b2f0, #14a2e3);
-webkit-border-radius: 13;
-moz-border-radius: 13;
border-radius: 13px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 1px 15px 3px 14px;
text-decoration: none;
}
.btn:hover {
background: #291929;
background-image: -webkit-linear-gradient(top, #291929, #570157);
background-image: -moz-linear-gradient(top, #291929, #570157);
background-image: -ms-linear-gradient(top, #291929, #570157);
background-image: -o-linear-gradient(top, #291929, #570157);
background-image: linear-gradient(to bottom, #291929, #570157);
text-decoration: none;
}
h3{text-align: center;}
h3 a{
text-align: center;
font-weight: 800;
color: red;
text-decoration: none;
background: yellow;
}
input:hover{
background-color: aqua;
}