]> WPIA git - motion.git/blob - templates/base.html
upd: formatting of motion area
[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   min-width: 100%;
25 }
26 .motion .motion-title{
27   border-bottom: 1px solid black;
28   padding: 5px;
29 }
30 .motion .motion-title .title-text{
31   font-size: 15pt;
32   font-weight: bold;
33 }
34 .motion .anchor {
35   text-decoration-line: none;
36   color: inherit;
37   margin-right: 5px;
38 }
39 .motion .motion-title .date {
40   position: relative;
41   right: 0px;
42   margin-right: 5px;
43 }
44 .motion p {
45   padding: 10px;
46 }
47 form {
48   margin-top:5px;
49   margin-bottom:5px;
50 }
51 </style>
52 </head>
53 <body>
54 {%- block body %}
55 {% endblock %}
56 </body>
57 </html>