Lab as a Service 2.0
[laas.git] / src / templates / notifier / notification.html
1 {% load staticfiles %}
2 <div class="card-container">
3 <h3 class="msg_header">{{notification.title}}</h3>
4 <p class="content"></p>
5 <pre>
6 {{notification.content|safe}}
7 </pre>
8
9 <p class="sender">Message from {{notification.sender}}</p>
10 </div>
11
12 <style media="screen">
13   .card-container {
14     box-shadow: 0 0 5px 2px #cccccc;
15     border: 1px solid #ffffff;
16     margin-top: 11px;
17   }
18   .card {
19     height: 50px;
20     margin: 0px;
21     position: relative;
22     border-bottom: 1px solid #cccccc;
23     padding: 0px;
24     width: 100%;
25     background-color: #ffffff;
26     z-index: 5;
27   }
28
29   .sender {
30     color: #636363;
31   }
32
33
34 </style>