Melanie NgomeforZaycodes Publicationzaycodes-1686045136273.hashnode.dev·Nov 25, 2023A Beginners Guide to Sass Basics“CSS is hard!” is what you’ll hear and face continuously as a beginner front-end web developer. It is not just repetitive but can easily become unmaintainable. Introducing Sass, CSS with superpowers. With Sass, you can do much more including variable...Discuss·1 likeSass basics
Dharmen Shahblog.shhdharmen.me·Nov 22, 2023Create size variant for Angular Material ButtonHow to change size To make size changes work accurately, we need to handle the size of all inner components (like ripple, label, touch area, etc.) respectfully for a mat-button in our example. Angular Material library provides an easy way to do it. I...Discuss·10 likesAngular
Shaik Mohammed Huzaifahuzaifa.hashnode.dev·Nov 21, 2023Partials And Importing StyleSheetsYou are definitely bored searching and trying to edit or look into the vast and never-ending stylesheet. So in Sass, we can make separate Sass files and import them into one main Sass. Sass allows us to Cleanly organize and interconnect stylesheets t...DiscussStyling, CSS, and Animation: Unleashing the Aesthetics of Web DesignSass
Shubh Sharmashubhsharma19.hashnode.dev·Nov 14, 2023CSS with superpowers? Working with Sass.Intro CSS is actually very fun and gives total control to the developer while developing websites but with time it become hard to maintain these stylesheets. This is where Sass can help. One day when I was exploring a big project which uses Sass I no...Discuss·6 likes·43 readsWeMakeDevs
Saifur Rahman Mahinsaifur-rahman39.hashnode.dev·Nov 11, 2023Explore CSS like proHere is an expanded list of CSS topics categorized into basic, mid-level, and advanced levels: Basic Level: 1. CSS Syntax and Selectors 2. Box Model and Layout 3. CSS Colors and Backgrounds 4. Text Formatting with CSS 5. CSS Borders and Margins 6. CS...DiscussFront-EndCSS
Lucky victoryviblog.hashnode.dev·Oct 26, 2023A Comprehensive Guide to CSS Preprocessors: Simplify and Enhance Your StylesheetsCSS preprocessors are a category of tools that extend the capabilities of plain CSS by introducing features like variables, nesting, mixins, and more. They aim to make your stylesheets more efficient, maintainable, and easier to work with. In this co...Discuss·4 likesWeb DesignWeb Development
Dinil Thilakarathnedinilthilakarathne.hashnode.dev·Oct 10, 2023Unleashing the Power of Sass: A Guide to Mixins and @includeIntroduction Sass (Syntactically Awesome Stylesheets) has revolutionized the way we write CSS. Its powerful features enable a more efficient and maintainable workflow. In this blog post, we'll dive into two key features of Sass: mixins and @include. ...Discuss·1 like·48 readsSass
Dinil Thilakarathnedinilthilakarathne.hashnode.dev·Oct 8, 2023Sass for Beginners: A Step-by-Step GuideWhat is Sass? Sass(Syntactically Awesome Style Sheets) was designed by Hampton Catlin and developed by Natalie Weizenbaum in 2006. Sass is a CSS processor. It means that Sass is a language that builds on top of CSS, adding new features and functional...Discuss·3 likes·89 readsCSS
Araceliaraceliponce.hashnode.dev·Oct 4, 2023The <style lang="scss"> or <style lang="sass"> in VueAs you may know, when working with Vue files, we typically include three sections: template, style, and script, for each component. In the <style> section, you have the option to include the 'scoped' attribute, like this: <style scoped>. This attribu...Discussvue
SIDDHANT BOBDEsiddhantbytes.hashnode.dev·Oct 2, 2023Elevate Your Styling with SASSWhat is SASS Sass stands for "Syntactically Awesome Stylesheets." It is a preprocessor scripting language that is interpreted or compiled into Cascading Style Sheets (CSS). SassScript is the scripting language itself. Sass extends the CSS by adding f...Discuss·1 likeWeb Development