diff options
author | Jayaram Pai | 2014-04-20 17:32:27 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-04-20 17:32:27 +0530 |
commit | 524107ea786adc4c0d35d0748b383bf2f0acb657 (patch) | |
tree | 6f377f75a0fcd4458fd5f2a0fb42f4109b4d9d93 /static/website/templates/index.html | |
parent | 3e2fd2e7e14f16a21928795bba91b5d1e87af3b3 (diff) | |
download | FOSSEE-Forum-524107ea786adc4c0d35d0748b383bf2f0acb657.tar.gz FOSSEE-Forum-524107ea786adc4c0d35d0748b383bf2f0acb657.tar.bz2 FOSSEE-Forum-524107ea786adc4c0d35d0748b383bf2f0acb657.zip |
made basic responsiveness, minor css, glyph changes
Diffstat (limited to 'static/website/templates/index.html')
-rw-r--r-- | static/website/templates/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html index 39afa9f..b90d3eb 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -5,7 +5,7 @@ {% block content %} <div id="carousel-container"> <div class="row"> - <div class="col-lg-12"> + <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="carousel"> {% for category in categories %} <div class="item"> @@ -25,10 +25,10 @@ <div id="filter-container"> <div class="row"> <form class ="" id="filter-form" action="" role="form"> - <div class="col-lg-6"> + <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <h3>Filter questions . . .</h3> <div class="row"> - <div class="form-group col-lg-10"> + <div class="form-group col-lg-10 col-md-10 col-sm-10 col-xs-10"> <select id="filter-select" class="form-control"> <option value="-1">Select a FOSS category</option> {% for category in categories %} @@ -36,19 +36,19 @@ {% endfor %} </select> </div> <!-- /.form-group, .col --> - <div class="form-group col-lg-2"> + <div class="form-group col-lg-2 col-md-2 col-sm-2 col-xs-2"> <input class="btn btn-primary btn-block" type="submit" value="Go"> </div> <!-- /.form-group, .col --> </div> </div> <!-- /.col --> </form> - <div class="col-lg-6"> + <div class="col-lg-6 col-md-6 col-sm-6"> <div class="row"> - <div class="col-lg-6"> + <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <h3 align="center"><strong>{% total_question_count %}</strong></h3> <h3 align="center">Questions</h3> </div> - <div class="col-lg-6"> + <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <h3 align="center"><strong>{% total_answer_count %}</strong></h3> <h3 align="center">Answers</h3> </div> @@ -73,7 +73,7 @@ <th> Tutorial</th> <th> Min </th> <th> Sec </th> - <th> Question</th> + <th> Question <span class="glyphicon glyphicon-link"></span></th> <th> Date</th> <th> Views</th> <th> Answers</th> |