Remove logo and fix #47
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
dc1e5138c6
commit
96fe158a86
@ -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,
|
||||||
|
@ -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 %}
|
||||||
|
@ -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>
|
||||||
|
@ -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">
|
||||||
|
Loading…
Reference in New Issue
Block a user