Fix queue name
[akkoma] / lib / pleroma / web / templates / layout / app.html.eex
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8" />
5 <meta name="viewport" content="width=device-width,initial-scale=1,minimal-ui" />
6 <title>
7 <%= Application.get_env(:pleroma, :instance)[:name] %>
8 </title>
9 <style>
10 body {
11 background-color: #282c37;
12 font-family: sans-serif;
13 color:white;
14 text-align: center;
15 }
16
17 .container {
18 margin: 50px auto;
19 max-width: 320px;
20 padding: 0;
21 padding: 40px 40px 40px 40px;
22 background-color: #313543;
23 border-radius: 4px;
24 }
25
26 h1 {
27 margin: 0;
28 }
29
30 h2 {
31 color: #9baec8;
32 font-weight: normal;
33 font-size: 20px;
34 margin-bottom: 40px;
35 }
36
37 form {
38 width: 100%;
39 }
40
41 input {
42 box-sizing: border-box;
43 width: 100%;
44 padding: 10px;
45 margin-top: 20px;
46 background-color: rgba(0,0,0,.1);
47 color: white;
48 border: 0;
49 border-bottom: 2px solid #9baec8;
50 font-size: 14px;
51 }
52
53 input:focus {
54 border-bottom: 2px solid #4b8ed8;
55 }
56
57 button {
58 box-sizing: border-box;
59 width: 100%;
60 color: white;
61 background-color: #419bdd;
62 border-radius: 4px;
63 border: none;
64 padding: 10px;
65 margin-top: 30px;
66 text-transform: uppercase;
67 font-weight: 500;
68 font-size: 16px;
69 }
70 </style>
71 </head>
72 <body>
73 <div class="container">
74 <h1>Pleroma</h1>
75 <%= render @view_module, @view_template, assigns %>
76 </div>
77 </body>
78 </html>