-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColor
More file actions
21 lines (18 loc) · 701 Bytes
/
Color
File metadata and controls
21 lines (18 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.btn-grad {
background-image: linear-gradient(to right, #DC2424 0%, #4A569D 51%, #DC2424 100%);
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
display: block;
}
.btn-grad:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}