Skip to content

Commit

Permalink
Merge pull request #34 from istenith/dev
Browse files Browse the repository at this point in the history
Adjust Responsiveness
  • Loading branch information
swastkk authored Jul 30, 2023
2 parents 98af2d8 + 39cfc55 commit b046a17
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
22 changes: 22 additions & 0 deletions forms/migrations/0008_alter_registeration_resume.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.0.8 on 2023-07-30 17:42

import django.core.files.storage
import django.core.validators
from django.db import migrations, models
import forms.models
import pathlib


class Migration(migrations.Migration):

dependencies = [
('forms', '0007_alter_registeration_resume'),
]

operations = [
migrations.AlterField(
model_name='registeration',
name='resume',
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(location=pathlib.PurePosixPath('/home/swastik/Desktop/ISTE/join.istenith.com/media')), upload_to='resumes/', validators=[forms.models.file_size, django.core.validators.FileExtensionValidator(allowed_extensions=['pdf', 'docx'])]),
),
]
14 changes: 12 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -824,14 +824,16 @@
.card00 {
padding-top: 30px
}
.card-detail-custom{
display: none;
}

.card1 {
border: none;
margin-left: 50px
}

.card2 {
border-bottom: 1px solid #F5F5F5;
margin-bottom: 25px
}

Expand All @@ -849,7 +851,15 @@
}

#progressbar {
left: -25px
left: -80px;
top: -312px;
}
.prev{
left: 12px;
top: -89px;
}
.h3-reg{
margin-bottom:80px ;
}
}

Expand Down
4 changes: 3 additions & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 class="brand-heading" style="font-size: 49px; height: 21px;">{{template.bran
<div>
<div class="row text-center justify-content-center px-3">
<p class="prev"><span class="fa fa-long-arrow-left"> Go Back</span></p id="back">
<h3 class="mt-4">Registration</h3>
<h3 class="mt-4 h3-reg">Registration</h3>
</div>
<div class="d-flex flex-md-row px-3 mt-4 flex-column-reverse">
<div class="col-md-6">
Expand All @@ -31,10 +31,12 @@ <h3 class="mt-4">Registration</h3>
<li class="step0"></li>
<li class="step0"></li>
</ul>
<div class="card-detail-custom">
<h6 class="mb-5">Personal Details</h6>
<h6 class="mb-5">Skills</h6>
<h6 class="mb-5">About ISTE?</h6>
<h6 class="mb-5">CV Upload</h6>
</div>
</div>
</div>
<div class="col-md-6">
Expand Down

0 comments on commit b046a17

Please sign in to comment.