Fixed Misc Bugs
[laas.git] / src / templates / notifier / notification.html
1 {% extends "layout.html" %}
2 {% block extrahead %}
3 <base target="_parent">
4 {% endblock %}
5 {% block basecontent %}
6 <div class="card-container">
7 <h3 class="msg_header">{{notification.title}}</h3>
8 <p class="content"></p>
9 <pre>
10 {{notification.content|safe}}
11 </pre>
12
13 </div>
14
15 <style media="screen">
16   .card-container {
17     box-shadow: 0 0 5px 2px #cccccc;
18     border: 1px solid #ffffff;
19     margin-top: 11px;
20   }
21   .card {
22     height: 50px;
23     margin: 0px;
24     position: relative;
25     border-bottom: 1px solid #cccccc;
26     padding: 0px;
27     width: 100%;
28     background-color: #ffffff;
29     z-index: 5;
30   }
31
32   .sender {
33     color: #636363;
34   }
35
36
37 </style>
38 {% endblock %}