CSS į SCSS konverteris paprasčiausias
Šis nemokamas internetinis įrankis leidžia konvertuoti CSS failą į SCSS failą. Tiesiog įklijuokite savo CSS į toliau pateiktą formą ir jis akimirksniu bus konvertuotas į SCSS. Nereikia atsisiųsti ar įdiegti jokios programinės įrangos. Laisvas
Kaip konvertuoti CSS į SCSS?
1 veiksmas: pasirinkite įvestį. Įveskite duomenis.
2 veiksmas: pasirinkite išvesties parinktis (pasirenkama) Išvesties parinktis.
3 veiksmas: generuokite išvestį.
CSS į SCSS keitiklio pavyzdžiai
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;
}
}
}