Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified cv_generator/cv_generator/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file modified cv_generator/db.sqlite3
Binary file not shown.
Binary file modified cv_generator/main/__pycache__/admin.cpython-310.pyc
Binary file not shown.
Binary file modified cv_generator/main/__pycache__/models.cpython-310.pyc
Binary file not shown.
Binary file modified cv_generator/main/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file modified cv_generator/main/__pycache__/views.cpython-310.pyc
Binary file not shown.
Binary file not shown.
97 changes: 26 additions & 71 deletions cv_generator/main/static/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -576,38 +576,10 @@ video {
position: fixed;
}

.bottom-2 {
bottom: 0.5rem;
}

.right-2 {
right: 0.5rem;
}

.right-4 {
right: 1rem;
}

.bottom-4 {
bottom: 1rem;
}

.bottom-8 {
bottom: 2rem;
}

.right-8 {
right: 2rem;
}

.bottom-12 {
bottom: 3rem;
}

.right-1 {
right: 0.25rem;
}

.right-12 {
right: 3rem;
}
Expand All @@ -617,16 +589,16 @@ video {
margin-right: auto;
}

.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}

.my-4 {
margin-top: 1rem;
margin-bottom: 1rem;
}

.mx-2 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}

.block {
display: block;
}
Expand All @@ -639,64 +611,47 @@ video {
display: table;
}

.h-4 {
height: 1rem;
}

.h-16 {
height: 4rem;
}

.h-1 {
height: 0.25rem;
}

.h-8 {
height: 2rem;
}

.h-12 {
height: 3rem;
}

.w-full {
width: 100%;
}

.w-4 {
width: 1rem;
.w-12 {
width: 3rem;
}

.w-1 {
width: 0.25rem;
.w-full {
width: 100%;
}

.w-16 {
width: 4rem;
.items-center {
align-items: center;
}

.w-8 {
width: 2rem;
.justify-center {
justify-content: center;
}

.w-12 {
width: 3rem;
.rounded-full {
border-radius: 9999px;
}

.items-center {
align-items: center;
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}

.justify-center {
justify-content: center;
.font-bold {
font-weight: 700;
}

.rounded {
border-radius: 0.25rem;
.text-gray-400 {
--tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity));
}

.rounded-full {
border-radius: 9999px;
.text-teal-700 {
--tw-text-opacity: 1;
color: rgb(15 118 110 / var(--tw-text-opacity));
}

a {
Expand Down
6 changes: 6 additions & 0 deletions cv_generator/main/templates/includes/breadcrumbs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<span
class="font-bold text-teal-700">Select data ></span>
<span
class="{% if step < 2 %}text-gray-400{% else %} font-bold text-teal-700 {% endif %}">Choose template > </span>
<span class="{% if step < 3 %}text-gray-400{% else %} font-bold text-teal-700 {% endif %}">Preview ></span>
<span class="{% if step < 4 %}text-gray-400{% else %} font-bold text-teal-700 {% endif %}">Get PDF</span>
1 change: 1 addition & 0 deletions cv_generator/main/templates/includes/next_step.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a class="btn rounded-full fixed bottom-12 right-12 flex items-center justify-center hover:no-underline w-12 h-12" href="#">Next</a>
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% extends "_base.html" %}
{% block content %}
{% include "includes/breadcrumbs.html" with step=1 %}
<form method="post">
{% csrf_token %}
<table class="w-full my-4">
Expand Down Expand Up @@ -52,5 +53,5 @@
</table>
<button type="submit" class="btn">Update</button>
</form>
<a class="btn rounded-full fixed bottom-12 right-12 flex items-center justify-center hover:no-underline w-12 h-12" href="#">-></a>
{% include "includes/next_step.html" %}
{% endblock %}