Skip to content

Instantly share code, notes, and snippets.

@sdaityari
Forked from kawadhiya21/portfolio.md
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdaityari/570939a67686f67898fc to your computer and use it in GitHub Desktop.
Save sdaityari/570939a67686f67898fc to your computer and use it in GitHub Desktop.

Responsive Portfolio using Twitter Bootstrap

Bootstrap is a frontend framework developed by Twitter for design purposes. Apart from being responsive, it has got different components ranging from grid systems to icons set and hence surely lead the all the other frameworks. Bootstrap is open source and is the most popular repository on GitHub.

Today we will make a resume/portfolio using Bootstrap while taking care that it renders smoothly on tablet and mobile devices too. The working demo of this tutorial can be found here.

Getting Bootstrap

Bootstrap can be downloaded or compiled to your needs from their 'Getting Started' page but I would prefer using the CDN option, because it's faster. Also, it is advised to go through the page and get yourself accustomed with some bootstrap terms, including common classes. This page also has some examples of how to use Bootstrap classes. Be sure to check them out. Observe the responsiveness by shortening your browser at various widths and noticing the difference (don't be lazy, do that). See how the rendering differs at different widths.

Introduction

Grid System and Devices

Bootstrap uses 12 point grid system. This means that entire page or row is divided into 12 equal parts. We will always make sure that our width sum is 12. What is more interesting is that the specification can be provided for devices of different widths with least effort. This means that if a column covers 7/12 of row in one device, may be reduced to cover just 5/12 in other. It will be more interesting when you observe it.

Bootstrap specifies 4 types of devices based on the width:

  1. Extra small (xs)
  2. Small (sm)
  3. Medium (md)
  4. Large (lg)

Separate designs for each device can be specified.

Initiation

Let us start by setting up HTML and importing the Bootstrap CSS and JavaScript.

<html>
	<head>
		<title>
			My Portfolio
		</title>
		<style type="text/css">
		body{
			padding-top: 70px;
		}
		</style>
		<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
		<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
	</head>
	<body>
		
	</body>
</html>

Navigation

Navigation Toolbar, popularly known as navbar, is a very powerful tool to design menus. Not only did it change the design but also the way in which the menus were designed. UX was greatly improved after the introduction of this menu. Let's see how to use it.

        <div class="navbar navbar-fixed-top" role="navigation">
	      <div class="container">
	        <div class="navbar-header">
	          <a class="navbar-brand" href="#">Kshitij Awadhiya</a>
	        </div>
	      </div>
	    </div>

Looks like : Navbar

navbar is the basic class which defines the styles of navigation bar. Class navbar-fixed-top keeps it attached to the top. So even if the page extends, the navigation bar is always visibile.

container is the class of child div. It defines some important styles like:

  1. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  2. font-size: 14px;
  3. margin-left: 65.5px;
  4. margin-right: 65.5px;
  5. padding-left: 15px;
  6. padding-right: 15px;

Without the container div, the top bar would look something like this:

Container

This isn't looking good. Margins and paddings are important.

navbar-header is defines the top-left header text style. The text is defined using navbar-brand giving it a fixed appearance on the left in different devices. It is a hyperlink and contains the link to the homepage of the portfolio.

Next we come to define few other menu options on the navigation bar.

<html>
	<head>
		<title>
			My Portfolio
		</title>
		<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
		<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
		<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
	</head>
	<body>
		<div class="navbar navbar-fixed-top" role="navigation">
	      <div class="container">
	        <div class="navbar-header">
	          <a class="navbar-brand" href="#">Kshitij Awadhiya</a>
	        </div>
	        <div class="navbar-collapse collapse">
	          <ul class="nav navbar-nav">
	            <li class="active"><a href="#">Home</a></li>
	            <li><a href="#about">About</a></li>
	            <li><a href="#contact">Contact</a></li>
	          </ul>
	        </div>
	      </div>
	    </div>
	</body>
</html>

Our new codes gives us the following look.

Nav Bar

navbar-collapse collapse will be explained shortly. The other menu options is a list which can be specified by using nav class which gives them margin on top and bottom. navbar-nav fixes the width and hence allows them to render properly inside navigation bar. The menu options are specified by <li> and <a> tag. Class active highlights the particular menu option to specify the current page.

The navigation bar looks good but certainly not as good because of its inefficiency to make a statement. Dark bar with lighter menu would have done the trick. So simple insert navbar-inverse class to the navbar:

<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">

Now, it looks far better.

Classic nav Bar

Fixing Navigation Bar for Mobile Devices

Coming back to navbar-collapse collapse. When we look the same page on a mobile device, we wouldn't want to see the whole menu. Instead a drop down would do. Now here comes the use to navbar-collapse collapse class. We specify a button with an icon which appears on the top right only and only if viewed on a mobile device.

All the above may sound a bit tough, but if you read carefully, it's actually within your reach. It involves rendering the menu according to device width. But with Bootstrap, all we need to do is specify the button and rest is taken care by them. The code looks like the following.

<div class="navbar-header">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
	    <span class="sr-only">Toggle navigation</span>
	    <span class="icon-bar"></span>
	    <span class="icon-bar"></span>
	    <span class="icon-bar"></span>
    </button>
	<a class="navbar-brand" href="#">Kshitij Awadhiya</a>
</div>

On normal device looks like this : menu

On Mobile device: mobile menu

On Click: menu after click

Lets move on to make other elements.

Display Image and Basic Details

Now what I planned was a simple round display image in the center followed by name and other basic details. Lets use the grid system.

We have a division of 12 and hence, need to adjust that way. What we do is use the middle 4/12 portion for displaying image and details. Hence starting with a new div and making a row which contains all the col elements.

<div role="main">
	    	<div class="container">
	    		<div class="row">
	    			<div class="col-md-4">
	    				
	    			</div>
	    			<div class="col-md-4">
	    				<div style="margin:0 auto;width:120px;">
	    					<div style="background-image:url('http://i61.tinypic.com/2uppus0_th.jpg');width:120px;height:120px;border-radius:60px;"></div>
	    				</div>
	    				
	    					<h1 style="text-align:center">Kshitij Awadhiya</h1>
	    					<p style="text-align:center">PHP and Python</p>
	    					<p style="text-align:center">CodeIgniter and Django</p>
	    					<p style="text-align:center">Worked at : Bluegape, Sourceasy, The Blog Bowl</p>
	    			</div>
	    			<div class="col-md-4">

	    			</div>
	    		</div>

The code produces the following.

display image

A brief Explanation

  1. <div class="col-md-4"></div> At the starting and end specifies that 4/12 of the portion remains empty on each side.
  2. <div style="margin:0 auto;width:120px;"> is used to bring the image at the center.
  3. background-image:url('ht..g');width:120px;height:120px;border-radius:60px; This fixes image size and curves it by 60px radius which eventually makes it round.
  4. style="text-align:center" brings the text part to the center of the screen.

Portfolio Images

Clear about 50px of space to increase clarity.

<div class="row" style="height:50px">
</div>

A group of 4 pictures are to be put upon with heading and should look perfectly well in all devices. As per grid system, we just need to allocate them 3/12 of space in each device and rest is taken care by Bootstrap.

Example :

<div class="col-md-3 col-sm-3 col-lg-3 portfolio" style="background-image:url('http://oi57.tinypic.com/b9ch2a.jpg')">
    <p class="portfolio_text">Python</p>
</div>

We also introduce 2 classes for styling the image and text inside.

                .portfolio{
			background-position:center; 
			background-repeat:no-repeat; 
			border:solid .5px;
			height:300px ;
		}
		.portfolio_text{
			text-align:center;
			background-color:black;
			color:white;font-size:20px;
			font-weight:bold
		}

portfolio specifies that the background-image position inside should be centered and shouldn't repeat. .portfolio_text only centers the text apart from fixing basic properties like font-size and style. Now a group of 4 such are to be added in a row to get the images in portfolio.

<div class="row">
                    <div class="col-md-3 col-sm-3 col-lg-3 portfolio" style="background-image:url('http://oi57.tinypic.com/b9ch2a.jpg')">
	    				<p class="portfolio_text">Python</p>
	    			</div>
    				<div class="col-md-3 col-sm-3 col-lg-3 portfolio" style="background-image:url('http://oi59.tinypic.com/2q88qc3.jpg')">
    					<p class="portfolio_text">CSS</p>
    				</div>
    				<div class="col-md-3 col-sm-3 col-lg-3 portfolio" style="background-image:url('http://oi58.tinypic.com/2hdnn2w.jpg')">
    					<p class="portfolio_text">HTML</p>
    				</div>
    				<div class="col-md-3 col-sm-3 col-lg-3 portfolio" style="background-image:url('http://oi58.tinypic.com/33tma6d.jpg')">
    					<p class="portfolio_text">PHP</p>
    				</div>
</div>

This adds a group of 4 pictures and more can be added simply by replicating that div and changing background-image url.

Now my portfolio on desktop looks like:

desktop

And on smaller desktop:

small desktop

On Tablets:

tablets

On Mobile:

mobile

Well that is my portfolio, and it is perfectly responsive. Anyone can view my portfolio very easily on any device. Thanks to Bootstrap!

The source code can be found on and downloaded from Github. The demo is hosted on GitHub pages.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment