Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Primer CSS Large Box Shadow

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 CSS principles, functional CSS, and BEM architecture. It is highly reusable and flexible. It is created with GitHub’s design system.

Box shadow utility is used to give a shadow-like effect to the container element. The box-shadow styles are used to pay attention to the content. Primer CSS Large Box Shadow styles are mainly used for marketing content, UI screenshots, and content that appears on top of other page elements.

Used Classes:

  • .color-shadow-large: This class is used to display the large box-shadow content.

Syntax:

<div class="color-shadow-large">
      Large Box Shadow
</div>

Example 1: This example describes how to use Primer CSS Large Box Shadow utility.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>Primer CSS Large Box Shadow</title>
  
    <link rel="stylesheet" href=
"https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" />
</head>
  
<body>
    <div class="p-3">
        <h1 class="color-fg-success">
            GeeksforGeeks
        </h1>
  
        <h3>Primer CSS Large Box Shadow</h3>
  
        <div class="color-shadow-large p-5">
            A Computer Science portal for geeks. It 
            contains well written, well thought and 
            well explained computer science and 
            programming articles,
        </div>
    </div>
</body>
  
</html>

Output:

 

Example 2: This example describes how to use Primer CSS Large Box Shadow utility.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>Primer CSS Large Box Shadow</title>
  
    <link rel="stylesheet" href=
"https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" />
</head>
  
<body>
    <div class="p-3">
        <h1 class="color-fg-success">
            GeeksforGeeks
        </h1>
  
        <h3>Primer CSS Large Box Shadow</h3>
  
        <div class="col-4">
            <div class="Box color-shadow-large">
                <div class="Box-row d-flex flex-justify-center">
                    <h1 class="color-fg-success">
                        GeeksforGeeks
                    </h1>
                </div>
                <div class="Box-row">
                    A Computer Science portal for geeks. It 
                    contains well written, well thought and 
                    well explained computer science and 
                    programming articles
                </div>
                <div class="Box-row d-flex flex-justify-center">
                    <img src=
                        class="img-responsive" alt="">
                </div>
            </div>
        </div>
    </div>
</body>
  
</html>

Output:

 

Reference: https://primer.style/css/utilities/box-shadow#large


My Personal Notes arrow_drop_up
Last Updated : 12 Apr, 2022
Like Article
Save Article
Similar Reads
Related Tutorials