Remove logo and fix #47
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2022-09-09 09:08:31 +00:00
parent dc1e5138c6
commit 96fe158a86
4 changed files with 5 additions and 17 deletions

View File

@ -15,6 +15,7 @@ body {
a { a {
text-decoration: none; text-decoration: none;
color: white;
} }
body { body {
@ -24,15 +25,7 @@ body {
color: #b9bbbe; color: #b9bbbe;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-around;
}
#logo {
position: relative;
left: 24px;
top: 24px;
height: 36px;
width: 130px;
} }
footer, footer,

View File

@ -13,11 +13,6 @@
href="{{ url_for('static', filename='css/global.css') }}"/> href="{{ url_for('static', filename='css/global.css') }}"/>
</head> </head>
<body> <body>
<img src="{{ url_for('static', filename='img/Discord-Logo+Wordmark-White.svg') }}"
id="logo"
height="36"
width="130"
alt="{{ _('Discord Logo') }}"/>
<div id="content"> <div id="content">
{% block content %} {% block content %}
{% endblock content %} {% endblock content %}

View File

@ -1,6 +1,6 @@
{% extends "base.html.j2" %} {% extends "base.html.j2" %}
{% block content %} {% block content %}
<form action="" method="get"> <form action="{{ url_for(".index") }}" method="get">
<div id="box"> <div id="box">
<div id="avatars"> <div id="avatars">
<img src="{{ client.user.display_avatar }}" <img src="{{ client.user.display_avatar }}"
@ -8,7 +8,7 @@
width="80" width="80"
height="80"/> height="80"/>
</div> </div>
<h1>{{ client.user.display_name }}</h1> <h1><a href="{{ url_for(".index") }}">{{ client.user.display_name }}</a></h1>
<h2>{{ _('The discord scheduled event calendar generator') }}</h2> <h2>{{ _('The discord scheduled event calendar generator') }}</h2>
<hr /> <hr />
<h3>{{ _('This will allow you to:') }}</h3> <h3>{{ _('This will allow you to:') }}</h3>

View File

@ -12,7 +12,7 @@
width="80" width="80"
height="80"/> height="80"/>
</div> </div>
<h1>{{ client.user.display_name }}</h1> <h1><a href="{{ url_for(".index") }}">{{ client.user.display_name }}</a></h1>
<h2>{{ _('The discord scheduled event calendar generator') }}</h2> <h2>{{ _('The discord scheduled event calendar generator') }}</h2>
<hr /> <hr />
<ul id="providers"> <ul id="providers">