margin, padding and visual delimitation fix
This commit is contained in:
parent
66bb745c36
commit
edeb975500
10 changed files with 167 additions and 205 deletions
|
|
@ -21,7 +21,28 @@ input[type=text], input[type=email], textarea, select {
|
|||
|
||||
input[type=submit] {
|
||||
width: 200px;
|
||||
background-color: rgb(165, 202, 195);
|
||||
background: linear-gradient(242deg, #829e99, #93fce7);
|
||||
background-size: 400% 400%;
|
||||
|
||||
-webkit-animation: AnimationName 3s ease infinite;
|
||||
-moz-animation: AnimationName 3s ease infinite;
|
||||
animation: AnimationName 3s ease infinite;
|
||||
|
||||
@-webkit-keyframes AnimationName {
|
||||
0%{background-position:0% 73%}
|
||||
50%{background-position:100% 28%}
|
||||
100%{background-position:0% 73%}
|
||||
}
|
||||
@-moz-keyframes AnimationName {
|
||||
0%{background-position:0% 73%}
|
||||
50%{background-position:100% 28%}
|
||||
100%{background-position:0% 73%}
|
||||
}
|
||||
@keyframes AnimationName {
|
||||
0%{background-position:0% 73%}
|
||||
50%{background-position:100% 28%}
|
||||
100%{background-position:0% 73%}
|
||||
}
|
||||
color: black;
|
||||
padding: 14px 20px;
|
||||
margin: 8px 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue