Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container-fluid">
            <div class="row" id="fit_app">
                
                <section class="col-12" id="fa_header">
                    <div class="row">
                        <div class="col-10">
                            <span>Program</span>
                        </div>
                        <div class="col-2 text-right">
                            <i class="fa fa-plus"></i>
                        </div>
                    </div>
                </section>

                <section class="col-12" id="fa_body">
                    <div class="row fa_tile">
                        <ul class="col-12">
                            <li>
                                <span>
                                    <i class="fa fa-dumbbell"></i>
                                    <span class="workout_name">Bicep Training</span>
                                    <span class="status">In Progress..</span>
                                </span>
                            </li>
                            <li>
                                <span>
                                    <i class="fa fa-running"></i>
                                    <span class="workout_name">Running Training</span>
                                    <span class="status">Have Finished</span>
                                </span>
                            </li>
                        </ul>
                        <ul class="col-12">
                            <li>
                                <span>
                                    <i class="fa fa-weight"></i>
                                    <span class="workout_name">Cardio Training</span>
                                    <span class="status">In Progress..</span>
                                </span>
                            </li>
                            <li>
                                <span>
                                    <i class="fa fa-universal-access"></i>
                                    <span class="workout_name">Yoga Training</span>
                                    <span class="status">No Task</span>
                                </span>
                            </li>
                        </ul>
                    </div>
                </section>

                <section class="col-12" id="fa_collection">
                    <div class="row">
                        <div class="col-12">
                            <span class="heading">Course Collection</span>
                            <div class="row box">
                                <div class="col-3">
                                    <img src="https://i.postimg.cc/7LSpj78Z/girl.png" alt="">
                                </div>
                                <div class="col-9">
                                    <span>Courses i attended</span>
                                    <span>
                                        12 courses in total
                                        <i class="fa fa-chevron-right"></i>
                                    </span>
                                </div>
                            </div>
                        </div>
                    </div>
                </section>

                <section class="col-12" id="fa_footer">
                    <div class="row">
                        <div class="col-12">
                            <ul>
                                <li class="active">
                                    <span>
                                        <i class="fa fa-home"></i>
                                    </span>
                                </li>
                                <li>
                                    <span>
                                        <i class="fa fa-chart-line"></i>
                                    </span>
                                </li>
                                <li>
                                    <span>
                                        <i class="fa fa-bell"></i>
                                    </span>
                                </li>
                                <li>
                                    <span>
                                        <i class="fa fa-user"></i>
                                    </span>
                                </li>
                            </ul>
                        </div>
                    </div>
                </section>

            </div>
        </div>
              
            
!

CSS

              
                body{
	background: #e3edf9;
}

#fit_app{
	padding-top: 15px;
}

#fit_app > section{
	padding: 25px;
}

#fa_header{
	height: 40px;
	line-height: 40px;
}

#fa_header span{
	font-size: 23px;
	font-weight: 500;
}

#fa_header i{
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	color: #386ef4;
	box-shadow: 4px 4px 8px -1px rgba(0,0,0,0.25),
				-4px -4px 8px -1px rgba(255,255,255,1);
	border-radius: 50%;
}

#fa_body{
	margin-top: 20px !important;
}

.fa_tile{
	padding-left: 15px;
	padding-right: 15px;
}

.fa_tile ul{
	padding: 0;
	margin-bottom: 25px;
}

.fa_tile ul li{
	list-style: none;
	float: left;
	width: 46%;
	padding: 25px;
	background: #e3edf7;
	box-shadow: 4px 4px 6px -1px rgba(0,0,0,0.15),
				-4px -4px 6px -1px rgba(255,255,255,1);
	border-radius: 5px;
}

.fa_tile ul li:last-child{
	position: absolute;
	right: 0;
}

.fa_tile ul li i{
	display: block;
	color: #386ef4;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}

.fa_tile ul li span{
	display: block;
}

.workout_name{
	font-size: 17px;
	font-weight: 600;
	color: rgba(0,0,0,1);
}

.status{
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.4);
	padding-top: 5px;
}

#fa_collection .heading{
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 18px;
}

#fa_collection img{
	height: 65px;
	width: 65px;
	border-radius: 10px;
	background: #386ef4;
}

#fa_collection div div span{
	display: block;
}

.box{
	margin-left: 0px;
	margin-right: 0px;
	padding: 10px 0;
	background: #e3edf7;
	box-shadow: 4px 4px 6px -1px rgba(0,0,0,0.15),
				-4px -4px 6px -1px rgba(255,255,255,1);
	border-radius: 5px;
}

.box div.col-9 span:first-child{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.box div.col-9 span:last-child{
	font-size: 13px;
	font-weight: 400;
}

.box i{
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	color: rgba(0,0,0,0.4);
	box-shadow: 4px 4px 8px -1px rgba(0,0,0,0.25),
				-4px -4px 8px -1px rgba(255,255,255,1);
	border-radius: 50%;
	margin-left: 65px;
}

#fa_footer{
	position: absolute;
	bottom: -25px !important;
}

#fa_footer ul{
	padding: 0;
}

#fa_footer ul li{
	list-style: none;
	float: left;
	width: 25%;
	text-align: center;
}

#fa_footer ul li span{
	color: rgba(0,0,0,0.5);
}

#fa_footer ul li i{
	line-height: 50px;
	text-align: center;
	font-size: 20px;
}

.active i{
	background: #386ef4;
	height: 70px;
	width: 50px;
	color: #fff;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

              
            
!

JS

              
                
              
            
!
999px

Console