Commit e408be2b authored by Gabriel Geraldo's avatar Gabriel Geraldo

implemented css for new add and edit pages

parent e9e9be93
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'details.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'details.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block title %}{{ object.first_name }} {{ object.last_name }}{% endblock %} {% block title %}{{ object.first_name }} {{ object.last_name }}{% endblock %}
...@@ -17,7 +18,7 @@ ...@@ -17,7 +18,7 @@
<li class="subinfo">Nationality: {{ object.nationality }}</li> <li class="subinfo">Nationality: {{ object.nationality }}</li>
<li class="subinfo">Bio:<br>{{ object.bio}}</li> <li class="subinfo">Bio:<br>{{ object.bio}}</li>
<form action="edit"> <form action="edit">
<input type="submit" value="Edit Author" /> <input type="submit" value="Edit Author">
</form> </form>
</ul> </ul>
</section> </section>
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'details.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'details.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block title %}{{ object.title }}{% endblock %} {% block title %}{{ object.title }}{% endblock %}
...@@ -19,7 +20,7 @@ ...@@ -19,7 +20,7 @@
<li class="subinfo">ISBN: {{ object.isbn }}</li> <li class="subinfo">ISBN: {{ object.isbn }}</li>
<li class="subinfo">Short Description: <br>{{ object.blurb }}</li> <li class="subinfo">Short Description: <br>{{ object.blurb }}</li>
<form action="edit"> <form action="edit">
<input type="submit" value="Edit Book" /> <input type="submit" value="Edit Book">
</form> </form>
</ul> </ul>
</section> </section>
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
{% block style %} {% block style %}
<link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/> <link rel='stylesheet' type='text/css' href="{% static 'base.css' %}"/>
<link rel='stylesheet' type='text/css' href="{% static 'add-edit.css' %}"/>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
......
form > p {
display: grid;
grid-template-columns: 30% 70%;
margin: 1em 0 1em 0;
}
input[type=submit] {
color: black;
background-color: #AF9164;
text-transform: uppercase;
font-weight: bold;
padding: 1em;
}
input[type=submit]:hover {
color: white;
background-color: #6F1A07;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment