f944cbc262aa2d8859c158036fb3cac77dda3808
[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 input[type="checkbox"] {
58 width: auto;
59 }
60
61 button {
62 box-sizing: border-box;
63 width: 100%;
64 color: white;
65 background-color: #419bdd;
66 border-radius: 4px;
67 border: none;
68 padding: 10px;
69 margin-top: 30px;
70 text-transform: uppercase;
71 font-weight: 500;
72 font-size: 16px;
73 }
74 </style>
75 </head>
76 <body>
77 <div class="container">
78 <h1>Pleroma</h1>
79 <%= render @view_module, @view_template, assigns %>
80 </div>
81 </body>
82 </html>