Removed inline css from template
This commit is contained in:
parent
32f1260adc
commit
3a3da0fa86
|
@ -13,6 +13,7 @@
|
|||
h1 img {max-height:1.4em;}
|
||||
.notice {padding:0.8em;border-radius:3px;background:#e53935;color:#eee;}
|
||||
.notice a {color:#eee;font-decoration:underline;}
|
||||
.container {max-width:40em}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}Welcome!{% endblock %}
|
||||
{% block title %}Create a new room{% endblock %}
|
||||
{% block main %}
|
||||
<style>
|
||||
.container {max-width:40em}
|
||||
</style>
|
||||
<main class="container">
|
||||
<header>
|
||||
<h1>Create a new room</h1>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% block title %}Error {{exception.status_code}}{% endblock %}
|
||||
{% block main %}
|
||||
<main class="container">
|
||||
<h1>Oh no! Error {{exception.status_code}}</h1>
|
||||
<h1>{{exception.status_code}}</h1>
|
||||
<p>{{exception}}</p>
|
||||
</main>
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}{{order.name}}'s Booking{% endblock %}
|
||||
{% block main %}
|
||||
<style>
|
||||
.container {max-width:40em}
|
||||
</style>
|
||||
<main class="container">
|
||||
<header>
|
||||
<h1>{{order.name}}'s Booking</h1>
|
||||
|
|
Loading…
Reference in New Issue