119 lines
No EOL
2.8 KiB
SCSS
119 lines
No EOL
2.8 KiB
SCSS
input[type=text], input[type=email], textarea, select {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
input[type=submit] {
|
|
font-size: 1em;
|
|
|
|
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;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-family: avantB, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
-webkit-transition: color 0.2s linear;
|
|
-moz-transition: color 0.2s linear;
|
|
-ms-transition: color 0.2s linear;
|
|
-o-transition: color 0.2s linear;
|
|
transition: color 0.2s linear;
|
|
}
|
|
|
|
input[type=submit]:hover {
|
|
color: #fff;
|
|
|
|
}
|
|
/* CSS Created by CSS CHECKBOX */
|
|
/**********************************/
|
|
/**** www.CSScheckbox.com *********/
|
|
|
|
/*general styles for all CSS Checkboxes*/
|
|
label {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
input[type=checkbox].css-checkbox {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
clip: rect(0 0 0 0);
|
|
height:1px;
|
|
width:1px;
|
|
margin:-1px;
|
|
padding:0;
|
|
border:0;
|
|
}
|
|
|
|
input[type=checkbox].css-checkbox + label.css-label {
|
|
padding-left:20px;
|
|
height:15px;
|
|
display:inline-block;
|
|
line-height:15px;
|
|
background-repeat:no-repeat;
|
|
background-position: 0 0;
|
|
font-size: 1em;
|
|
vertical-align:middle;
|
|
cursor:pointer;
|
|
}
|
|
|
|
input[type=checkbox].css-checkbox:checked + label.css-label {
|
|
background-position: 0 -15px;
|
|
}
|
|
|
|
.css-label{
|
|
background-image:url(../img/check.png);
|
|
}
|
|
|
|
/*specific classes related to Checkbox skins*/
|
|
|
|
|
|
input[type=checkbox].css-checkbox.lrg + label.css-label.lrg {
|
|
padding-left:22px;
|
|
height:20px;
|
|
display:inline-block;
|
|
line-height:20px;
|
|
background-repeat:no-repeat;
|
|
background-position: 0 0;
|
|
font-size: 1em;
|
|
vertical-align:middle;
|
|
cursor:pointer;
|
|
}
|
|
|
|
input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg{
|
|
|
|
background-position: 0 -20px;
|
|
}
|
|
|