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