Primer CSS Large Progress Last Updated : 08 Apr, 2022 Comments Improve Suggest changes Like Article Like Report Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by object-oriented CSS principles, functional CSS, and BEM architecture. It is highly reusable and flexible. It is created with GitHub’s design system. Primer CSS offers various progress bars such as large, small, and inline. In this article, we discuss large progress. Large progress is a little taller than the default. Primer CSS Large Progress Class: Progress--large: This class is used to create a large progress bar than the default one. Syntax: <span class="Progress Progress--large"> <span class="Progress-item color-bg-(color_name)-emphasis" > ... </span> </span> Note: color_name can be primary, success, alert, warning, etc. Example 1: This example demonstrates the use of the Primer CSS Large progress using Progress--large and color-bg-success-emphasis classes. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Large Progress </title> <link rel="stylesheet" href= "https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" /> </head> <body style="margin-inline: 10rem;"> <div class="text-center"> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Large Progress </h3> </div> <span class="mt-5 Progress Progress--large"> <span class="Progress-item color-bg-success-emphasis" style="width: 30%;"> </span> </span> </body> </html> Output: Primer CSS Large Progress Example 2: This is another example that demonstrates the use of the Primer CSS Large progress using Progress--large color-bg-danger-emphasis class. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Large Progress </title> <link rel="stylesheet" href= "https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" /> </head> <body style="margin-inline: 10rem;"> <div class="text-center"> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Large Progress </h3> </div> <span class="mt-5 Progress Progress--large"> <span class="Progress-item color-bg-danger-emphasis" style="width: 50%;"> </span> </span> </body> </html> Output: Primer CSS Large Progress Reference: https://primer.style/css/components/progress#large-progress Comment More infoAdvertise with us Next Article Primer CSS Large Progress Y yasarnnp Follow Improve Article Tags : Web Technologies CSS Primer-CSS Primer-CSS Component Similar Reads Primer CSS Progress Primer CSS is a free open-source CSS framework that is built upon the GitHub design system to provide support to the broad spectrum of Github websites. It creates the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are ste 4 min read Primer CSS Inline Progress Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Small Progress Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Property order Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Primer CSS Property Order is an impor 2 min read Primer CSS Progress Accessibility Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Large Box Shadow Primer CSS is a free open-source CSS framework that is built upon systems that create the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by Object-Oriented CS 2 min read Primer CSS Progress with multiple values Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Marketing Typography Typography is a feature of Primer for styling and formatting the text content. It is used to create headings, subheadings, paragraphs, pull quotes, add more design-oriented font styles, and much more. It's responsive, but on a smaller scale, and the headlines are set in the marketing typeface.Primer 3 min read Primer CSS Responsive Padding Primer CSS is a free open-source CSS framework built on systems that lay the groundwork for basic style elements like spacing, typography, and color. Our patterns are both stable and interoperable because of their systematic structure. Object-Oriented CSS principles, core CSS, and BEM architecture i 3 min read Primer CSS Loaders Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Like