Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bellapanghulan_reading
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ysabella Panghulan
bellapanghulan_reading
Commits
ea6e3fa2
Commit
ea6e3fa2
authored
Mar 28, 2023
by
Ysabella Panghulan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edited author details style
parent
8d282b65
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
10 deletions
+86
-10
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+20
-10
author_details.css
bellapanghulan_reading/static/stylesheets/author_details.css
+65
-0
list.css
bellapanghulan_reading/static/stylesheets/list.css
+1
-0
No files found.
bellapanghulan_reading/bookshelf/templates/bookshelf/author_details.html
View file @
ea6e3fa2
{%extends 'base.html'%}
{% block stylesheets %}
{% load static %}
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'stylesheets/author_details.css' %}"
>
{% endblock %}
{% block title %}{{ object }}{% endblock %}
...
...
@@ -9,23 +13,29 @@
{% block body %}
<div
class=
"author-content"
>
{% block content %}
<h3>
{{ object.age }}
</h3>
<h3>
{{ object.nationality }}
</h3>
<div
class=
"author-tags"
>
<div
class=
"author-tag"
>
<h4>
Age: {{ object.age }}
</h4>
</div>
<div
class=
"author-tag"
>
<h4>
Nationality: {{ object.nationality }}
</h4>
</div>
</div>
<p>
{{ object.bio }}
</p>
<h3>
Books by {{ object }} I love:
</h3>
<div
class=
"book-list"
>
<
u
l>
<
o
l>
{% for book in object.get_books %}
<li><a
href=
"{{ book.get_absolute_url }}"
>
{{ book }}
</a></li>
<a
href=
"{{ book.get_absolute_url }}"
>
<li>
{{ book }}
</li>
</a>
{% endfor %}
</
u
l>
</
o
l>
</div>
<div
class=
"links"
>
<ul>
<li><a
href=
"/home/"
>
Home
</a></li>
<li><a
href=
"/books/"
>
Books
</a></li>
<li><a
href=
"/authors/"
>
Authors
</a></li>
</ul>
<a
href=
"/home/"
class=
"btn-primary"
>
Home
</a>
<a
href=
"/books/"
class=
"btn-secondary"
>
Books
</a>
<a
href=
"/authors/"
class=
"btn-primary"
>
Authors
</a>
</div>
{% endblock %}
</div>
...
...
bellapanghulan_reading/static/stylesheets/author_details.css
0 → 100644
View file @
ea6e3fa2
body
{
padding
:
3.5rem
;
}
header
{
text-align
:
left
;
}
h2
{
text-transform
:
uppercase
;
font-size
:
30px
;
}
.author-tag
{
display
:
inline-block
;
margin-right
:
10px
;
background-color
:
#f2f2f2
;
border-radius
:
10px
;
}
.author-tag
h4
{
margin
:
0
;
padding
:
0.5rem
;
color
:
gray
;
}
ol
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
1
fr
;
column-gap
:
0.5rem
;
row-gap
:
0.5rem
;
padding
:
0
;
margin-right
:
auto
;
margin-left
:
auto
;
counter-reset
:
my-counter
;
list-style-type
:
none
;
}
ol
li
::before
{
content
:
counter
(
my-counter
);
counter-increment
:
my-counter
;
content
:
counter
(
my-counter
,
decimal-leading-zero
)
'\A''\A'
;
white-space
:
pre
;
font-size
:
medium
;
color
:
#7448F6
;
}
li
{
padding
:
0.80rem
;
cursor
:
pointer
;
transition
:
all
400ms
ease
;
text-align
:
center
;
border
:
1px
solid
#7448F6
;
border-radius
:
5px
;
width
:
50%
;
color
:
black
}
li
:hover
{
background-color
:
#E9E3FE
;
color
:
#7448F6
;
border-color
:
transparent
;
box-shadow
:
2px
2px
5px
rgba
(
0
,
0
,
0
,
0.3
);
transform
:
translateY
(
-5px
);
}
\ No newline at end of file
bellapanghulan_reading/static/stylesheets/list.css
View file @
ea6e3fa2
...
...
@@ -46,6 +46,7 @@ a {
color
:
inherit
;
text-decoration
:
none
;
}
li
:hover
{
background-color
:
#E9E3FE
;
color
:
#7448F6
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment