-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
57 lines (53 loc) · 1.19 KB
/
style3.css
File metadata and controls
57 lines (53 loc) · 1.19 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
img{
border-radius: 50%;
width:10%;
height:auto;
float:left;
padding-right: 1%;
}
.button{
/*margin-top: 200px;
margin-left:300px;
margin-bottom: 40%;
padding: 12%;
background-color: rgb(164, 248, 164);*/
margin: 10%;
text-align: center;
width: 200px;
font-size: 16px;
font-weight: 600;
color: #fff;
cursor: pointer;
margin: 20px;
height: 55px;
text-align:center;
border: none;
background-size: 300% 100%;
border-radius: 50px;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.button:hover {
background-position: 100% 0;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.button:focus {
outline: none;
}
.button {
background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn2{
margin-top: 50%;
margin-left: 350px;
margin-bottom: 40%;
padding:10%;
background-color: rgb(164, 248, 164);
cursor: pointer;
}