Konverter CSS ke SCSS paling sederhana
Alat online gratis ini memungkinkan Anda mengonversi file CSS menjadi file SCSS. Cukup tempel CSS Anda di formulir di bawah ini dan itu akan langsung dikonversi ke SCSS Tidak perlu mengunduh atau menginstal perangkat lunak apa pun. Gratis
Bagaimana Mengonversi CSS ke SCSS?
Langkah 1: Pilih masukan Anda. Masukkan Data.
Langkah 2: Pilih opsi keluaran (opsional) Opsi Keluaran.
Langkah 3: Hasilkan keluaran.
Contoh konverter CSS ke 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;
}
}
}