add nick
[laas.git] / src / templates / laas / base.html
1 {% extends "base/base.html" %}
2 {% load staticfiles %}
3 {% block logo %}
4
5 <style>
6     nav ,body{
7         background-color:#fff !important;
8     color:#343a40 !important;
9         }
10
11     header{
12         background-color:#f8f9fa !important;
13         color:#343a40 !important;
14     }
15
16     .nav-bg{
17         background-color:#fff !important;
18         color:#343a40 !important;
19     }
20
21     .nav-bg:hover{
22         background-color:#f8f9fa !important;
23         transition-duration:0.2s;
24     }
25
26     .dropDown-bg{
27         background-color:#d6d8db !important;
28         color:#343a40 !important;
29     }
30
31     .btnAnuket {
32         color: #343a40;
33         background-color: #6BDAD5;
34         transition-duration:0.2s;
35         border:0px
36     }
37     .btnAnuket:hover{
38         color: #f8f9fa;
39         background-color: #007473;
40         border:0px
41     }
42
43     .btnAnuket:focus{
44         color: #f8f9fa !important;
45         background-color: #007473 !important;
46         border:0px
47     }
48
49     .alertAnuket{
50         background-color: #e6b3c1;
51         color:#820c2c;
52         border:0px;
53     }
54     .inTextLink{
55         text-decoration: underline;
56     }
57
58     .Anuket-Text{
59         color:#343a40 !important;
60     }
61
62     h1, h2{
63         color:#343a40 !important;
64     }
65
66     p, h3, h4, h5{
67         color:#343a40 !important;
68     }
69
70     ::selection {
71     background: #BCE194; 
72     color:#343a40;
73     }
74     ::-moz-selection {
75     background: #BCE194;
76     color:#343a40;
77     }
78     </style>
79
80 <div class="col-12 col-sm order-1 order-sm-2 text-center text-lg-left">
81     <a href="https://anuket.io/" class="navbar-brand">
82         <img src="{% static "img/Anuket-logo.svg" %}" width="134.2" height="50" style="vertical-align:middle; margin:12px 12px 12px -20px;">
83     </a>
84     <a class="navbar-brand d-none d-lg-inline Anuket-Text" href={% url 'dashboard:index' %} style="margin-left:10px; font-size:26px; vertical-align:middle;">
85         LaaS Dashboard
86     </a>
87 </div>
88 {% endblock logo %}
89