]> WPIA git - motion.git/blob - templates/base.html
initial commit for motion applicaiton
[motion.git] / templates / base.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>{% block title %}Motion list{% endblock %}</title>
5 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
6 <style type="text/css">
7 .motion {
8   border: 1px solid black;
9 }
10 .motion .motion-title input {
11   width: 80%;
12 }
13 .motion textarea {
14   display: block;
15 }
16 .motion .motion-title{
17   border-bottom: 1px solid black;
18 }
19 .motion .motion-title .title-text{
20   font-size: 15pt;
21   font-weight: bold;
22 }
23 .motion .anchor {
24   text-decoration-line: none;
25   color: inherit;
26   margin-right: 5px;
27 }
28 .motion .motion-title .date {
29   position: relative;
30   right: 0px;
31   margin-right: 5px;
32 }
33 .motion p {
34   padding: 10px;
35 }
36 </style>
37 </head>
38 <body>
39 {% block body %}
40 {% endblock %}
41 </body>
42 </html>