Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Commit

Permalink
Aligned Overlapping Text in Email Verification
Browse files Browse the repository at this point in the history
  • Loading branch information
LaibaBasit008 committed Jun 16, 2020
1 parent 0d6f8f0 commit ad02e2b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions systers_portal/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,15 @@ body > .container-fluid {
}
}

/* Aligning Overlapping Text
-------------------------------------------------- */
#container{
clear:both;
margin-left: auto;
padding: 10px;
font-family: Monserrat;
font-size: 1.2em;
}

/* Common: about us, contact
-------------------------------------------------- */
Expand Down Expand Up @@ -584,6 +593,15 @@ table.decoration-none tr a {
padding-top: 25px;
}

.glyphicon {
float: right;
color: black;
}

.glyphicon-pencil {
right: 10px;
}

.map-container {
height:400px;
padding-right: 15px;
Expand All @@ -606,6 +624,7 @@ table.decoration-none tr a {
word-wrap: break-word;
margin-bottom: 40px;
}

/* Commentbox CSS
------------------------------------------------- */
.comment-box{
Expand All @@ -615,6 +634,20 @@ table.decoration-none tr a {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 1.0em;
line-height: 1.0em;
}

.edit .delete {
background-color: #fff;
color: black;
padding: 10px;
border: none;
cursor: pointer;
float: right;
}

.commentbox .details{
text-decoration: none;

/* webkit-text-size-adjust: 100%;*/
}

Expand Down
4 changes: 2 additions & 2 deletions systers_portal/systers_portal/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'systersdb',
'USER': '',
'PASSWORD': '',
'USER': 'myuser',
'PASSWORD': '1234',
'HOST': 'localhost',
'PORT': '5432',
}
Expand Down
2 changes: 1 addition & 1 deletion systers_portal/templates/account/verification_sent.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% block title %} - Verify Your E-mail Address{% endblock %}

{% block content %}
<div class="container">
<div id="container">
<h2>Verify Your E-mail Address</h2>
<hr>
<p>We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please <a href="{% url 'contact' %}">contact us</a> if you do not receive it within a few minutes.</p>
Expand Down

0 comments on commit ad02e2b

Please sign in to comment.