]> WPIA git - motion.git/blob - templates/base.html
fix bootstrap padding
[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://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
6 <style type="text/css">
7 .form-inline .motion {
8   width: 100%;
9 }
10 .motion {
11   border: 1px solid black;
12   margin-top:5px;
13   margin-bottom:5px;
14 }
15 .motion .motion-title input.motion-title-input {
16   width: 80%;
17 }
18 .motion .motion-title .float {
19   float: right;
20 }
21 .motion .motion-title .motion-type {
22   margin: 5px;
23   float: right;
24 }
25 .motion textarea {
26   display: block;
27   min-width: 100%;
28 }
29 .motion .motion-title{
30   border-bottom: 1px solid black;
31   padding: 10px;
32 }
33 .motion .motion-title .title-text{
34   font-size: 15pt;
35   font-weight: bold;
36 }
37 .motion .anchor {
38   text-decoration-line: none;
39   color: inherit;
40   margin-right: 5px;
41 }
42 .motion .motion-title .date {
43   position: relative;
44   right: 0px;
45   margin-right: 5px;
46 }
47 .motion p {
48   padding: 10px;
49 }
50 form {
51   margin-top:5px;
52   margin-bottom:5px;
53 }
54 </style>
55 </head>
56 <body>
57 {%- block body %}
58 {% endblock %}
59 </body>
60 </html>