Skip to main content

card

 



<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">

<div class="container">

    <div class="row">

        <div class="col-lg-3 col-sm-6">

            <div class="card-box bg-blue">

                <div class="inner">

                    <h3> 13436 </h3>

                    <p> Student Strength </p>

                </div>

                <div class="icon">

                    <i class="fa fa-graduation-cap" aria-hidden="true"></i>

                </div>

                <a href="#" class="card-box-footer">View More <i class="fa fa-arrow-circle-right"></i></a>

            </div>

        </div>


        <div class="col-lg-3 col-sm-6">

            <div class="card-box bg-green">

                <div class="inner">

                    <h3> ₹185358 </h3>

                    <p> Today’s Collection </p>

                </div>

                <div class="icon">

                    <i class="fa fa-money" aria-hidden="true"></i>

                </div>

                <a href="#" class="card-box-footer">View More <i class="fa fa-arrow-circle-right"></i></a>

            </div>

        </div>

        <div class="col-lg-3 col-sm-6">

            <div class="card-box bg-orange">

                <div class="inner">

                    <h3> 5464 </h3>

                    <p> New Admissions </p>

                </div>

                <div class="icon">

                    <i class="fa fa-user-plus" aria-hidden="true"></i>

                </div>

                <a href="#" class="card-box-footer">View More <i class="fa fa-arrow-circle-right"></i></a>

            </div>

        </div>

        <div class="col-lg-3 col-sm-6">

            <div class="card-box bg-red">

                <div class="inner">

                    <h3> 723 </h3>

                    <p> Faculty Strength </p>

                </div>

                <div class="icon">

                    <i class="fa fa-users"></i>

                </div>

                <a href="#" class="card-box-footer">View More <i class="fa fa-arrow-circle-right"></i></a>

            </div>

        </div>

    </div>

    <div class="row">

        <div class="col-lg-3 col-sm-6">

            <a href="http://www.uiuxstream.com/dashboard-user-profile-page-design-using-bootstrap-4/">uiuxstream</a>

        </div>

    </div>

</div>






body{

background:#eee;    

}


.card-box {

    position: relative;

    color: #fff;

    padding: 20px 10px 40px;

    margin: 20px 0px;

}

.card-box:hover {

    text-decoration: none;

    color: #f1f1f1;

}

.card-box:hover .icon i {

    font-size: 100px;

    transition: 1s;

    -webkit-transition: 1s;

}

.card-box .inner {

    padding: 5px 10px 0 10px;

}

.card-box h3 {

    font-size: 27px;

    font-weight: bold;

    margin: 0 0 8px 0;

    white-space: nowrap;

    padding: 0;

    text-align: left;

}

.card-box p {

    font-size: 15px;

}

.card-box .icon {

    position: absolute;

    top: auto;

    bottom: 5px;

    right: 5px;

    z-index: 0;

    font-size: 72px;

    color: rgba(0, 0, 0, 0.15);

}

.card-box .card-box-footer {

    position: absolute;

    left: 0px;

    bottom: 0px;

    text-align: center;

    padding: 3px 0;

    color: rgba(255, 255, 255, 0.8);

    background: rgba(0, 0, 0, 0.1);

    width: 100%;

    text-decoration: none;

}

.card-box:hover .card-box-footer {

    background: rgba(0, 0, 0, 0.3);

}

.bg-blue {

    background-color: #00c0ef !important;

}

.bg-green {

    background-color: #00a65a !important;

}

.bg-orange {

    background-color: #f39c12 !important;

}

.bg-red {

    background-color: #d9534f !important;

}

Comments

Popular posts from this blog

Get Sum of Columns in a SharePoint list (Threshold edition)

It is a known fact that once the treshold limit is reached in SP, everything seems frozen.  At this point you have some options. Increase the limit using powershell or from the Central Admin OR Index the columns that you will like to operate on and create views based on those. However programmatically if you want to sum a list that has reached its threshold.  You can do so in batches as hown below:          protected   void  GetSummary( out   long  ideas,  out   long  votes,  out   long  comments,  out   long  transform)         {              long  ideasum = 0;              long columntoSum = 0;              long  commentS...

Add Web Visual Studio templates to SharePoint Project

Would you like to add the web user control to SharePoint 2007 project development.  Then open the project file with notepad and add {349c5851-65df-11da-9384-00065b846f21} to the ProjectTypeGUIDs node.   The necessary change is shown below: < ProjectTypeGuids > {349c5851-65df-11da-9384-00065b846f21};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} </ ProjectTypeGuids >