Commit 8a71e8d046197669caa05474442bdaf22ef5b4b2

Fix Editor CSS issue

  - Move main.css from base.html to index.html; that way main.css doesn't
    override bootstrap styles in the editor interface.
  
1616 <link rel="stylesheet" href="{{url_for('static', filename='css/normalize.css')}}">
1717 <link rel="stylesheet" href="{{url_for('static', filename='css/bootstrap.min.css')}}" media="screen">
1818 <link rel="stylesheet" href="{{url_for('static', filename='css/mouchak.css')}}">
19 <link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}">
2019 <script src="{{url_for('static', filename='js/lib/modernizr-2.6.2.min.js')}}"></script>
2120
2221 <!--TODO: make this optional, only when there is a map plugin in the site. There
  
11{% extends "base.html" %}
22
33{% block head %}
4 <link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}">
45 <title> {{ title }} </title>
56{% endblock %}
67