definicao de layout

This commit is contained in:
2026-02-06 14:37:54 +00:00
parent 872a5bb3ea
commit a4f80c85c2
2686 changed files with 640668 additions and 294 deletions

View File

@@ -0,0 +1,86 @@
/**=====================
29. Form Input CSS Start
==========================**/
%input-mixin1 {
position: absolute;
z-index: 2;
left: 10px;
font-size: 14px;
width: 20px;
margin-left: -2.5px;
text-align: center;
padding: 10px 0;
top: 1px;
}
%input-mixin2 {
position: absolute;
z-index: 2;
left: 10px;
font-size: 14px;
width: 20px;
margin-left: -2.5px;
text-align: center;
padding: 10px 0;
top: 1px;
}
.input-group-square {
.input-group-text ,.form-control{
border-radius: 0;
}
}
.input-group-solid {
.input-group-text ,.form-control{
background: $light-gray;
}
}
.input-group-air {
box-shadow: 0 3px 20px 0 $light-semi-gray;
}
.icon-addon {
position: relative;
color: $color-scarpa;
display: block;
&:after {
display: table;
content: "";
clear: both;
}
&:before {
display: table;
content: "";
}
.addon-md {
.form-control {
padding-left: 30px;
float: left;
font-weight: normal;
}
.glyphicon {
@extend %input-mixin1;
}
.fa {
@extend %input-mixin1;
}
}
.form-control {
padding-left: 30px;
float: left;
font-weight: normal;
}
.glyphicon,.fa {
@extend %input-mixin2;
}
}
.pill-input-group div {
&:last-child span {
border-top-right-radius: 1.3rem;
border-bottom-right-radius: 1.3rem;
}
&:first-child span {
border-top-left-radius: 1.3rem;
border-bottom-left-radius: 1.3rem;
}
}
/**=====================
29. Form Input CSS Ends
==========================**/