]> WPIA git - motion.git/blob - templates/base.html
Merge branch 'UTC' into 'master'
[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.motion-title-input {
11   width: 80%;
12 }
13 .motion .motion-title .float {
14   float: right;
15 }
16 .motion .motion-title .motion-type {
17   margin: 5px;
18   float: right;
19 }
20 .motion textarea {
21   display: block;
22 }
23 .motion .motion-title{
24   border-bottom: 1px solid black;
25 }
26 .motion .motion-title .title-text{
27   font-size: 15pt;
28   font-weight: bold;
29 }
30 .motion .anchor {
31   text-decoration-line: none;
32   color: inherit;
33   margin-right: 5px;
34 }
35 .motion .motion-title .date {
36   position: relative;
37   right: 0px;
38   margin-right: 5px;
39 }
40 .motion p {
41   padding: 10px;
42 }
43 </style>
44 </head>
45 <body>
46 {%- block body %}
47 {% endblock %}
48 </body>
49 </html>