comparison sat_templates/default/static/event.css @ 147:33c7ce833d3f

install: setup.py fix + moved "default" dir in a "sat_templates" dir: the merge request at https://bugs.goffi.org/mr/view/3 was a good basis, but not fully working ("default" dir was removed), this patch fixes it, and do some improvments: - moved "default" in "sat_templates" dir, which correspond to the python module, so it can be found easily from python - added VERSION, and mercurial hash detection, in the same way as for Cagou and backend - slight modification of classifiers - replaces tabs coming from MR by spaces
author Goffi <goffi@goffi.org>
date Sat, 02 Jun 2018 17:25:43 +0200
parents default/static/event.css@24af9089aacd
children 954759f0e8fa
comparison
equal deleted inserted replaced
146:7dc00829c32f 147:33c7ce833d3f
1 @import 'blog.css'; /* needed as blog/articles.html is included */
2
3 .invitation_header {
4 text-align: center;
5 font-variant: small-caps;
6 border: none;
7 }
8
9 .instructions {
10 font-style: italic;
11 margin: 0;
12 }
13
14 #event_picture {
15 max-width: 100%;
16 border-radius: 2em;
17 }
18
19 #event_counter {
20 font-weight: bold;
21 font-size: 1.3em;
22 text-align: center;
23 width: 15em;
24 margin: 1em auto;
25 border: 2px solid #aab6c4;
26 background-color: #f3e7e7;
27 color: #2f3943;
28 }
29
30 .attendance {
31 background-color: #9ca0a8;
32 padding: 0 0.3em;
33 max-width: 580px;
34 margin: 0 auto;
35 color: #3A3A3A;
36 }
37
38 .attending {
39 width: 6em;
40 margin: 0 auto;
41 }
42
43 .attending label {
44 /* display: inline; */
45 margin: 0.8em 0;
46 }
47
48 .guests label {
49 display: block;
50 margin: 1em 0;
51 }
52
53 .guests input {
54 width: 2.5em;
55 margin: 0 1em;
56 }
57
58 .poll_instructions {
59 font-weight: bold;
60 font-size: 0.9em;
61 font-size: 1.1em;
62 text-align: center;
63 }
64
65 .guests label{
66 text-align: center;
67 /* font-style: italic */
68 }
69
70 .guests input {
71 display: block;
72 margin: 0 auto;
73 }
74
75 .submit {
76 width: 15em;
77 margin: 0 auto;
78 padding: 1em 0;
79 }
80
81 .submit input {
82 width: 100%;
83 }
84
85 @media (min-width: 500px) {
86 .invitation_header {
87 width: 94%;
88 margin: 0 auto;
89 border: solid 1px;
90 border-color: #9ca0a8;
91 }
92 }