CSS għal SCSS konvertitur sempliċi
Din l-għodda onlajn b'xejn tħallik tikkonverti fajl CSS f'fajl SCSS. Iżżejjed is-CSS tiegħek fil-formola t'hawn taħt u istantanjament tiġi kkonvertita f'SCSS M'hemmx għalfejn tniżżel jew tinstalla xi softwer. B'xejn
Kif tikkonverti CSS għal SCSS?
Pass 1: Agħżel l-input tiegħek. Daħħal Data.
Pass 2: Agħżel għażliet ta 'output (mhux obbligatorju) Għażliet ta' Output.
Pass 3: Iġġenera output.
Eżempji ta' konvertitur CSS għal SCSS
CSS
.feature-url {
background: #f7f7f7;
text-align: center;
}
.feature-url li {
list-style: none;
display: inline-block;
margin: 2px;
border: 1px solid #e9ebee;
text-align: center;
}
.feature-url li a {
padding: 5px;
color: blue;
display: block;
min-width: 70px;
}
.feature-url li a i {
font-size: 20px;
}
.feature-url li a:hover {
text-decoration: none;
background: #e9ebee;
color: #222;
}
.feature-url li.active a {
background: #e9ebee;
color: #222;
}
SCSS
.feature-url {
background: #f7f7f7;
text-align: center;
li {
list-style: none;
display: inline-block;
margin: 2px;
border: 1px solid #e9ebee;
text-align: center;
a {
padding: 5px;
color: blue;
display: block;
min-width: 70px;
i {
font-size: 20px;
}
&:hover {
text-decoration: none;
background: #e9ebee;
color: #222;
}
}
&.active a {
background: #e9ebee;
color: #222;
}
}
}