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