Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sponsor logos #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
33 changes: 33 additions & 0 deletions main/static/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,37 @@
display: none;
z-index: 100;
border-radius: 10px;
}
.sponsors {
width:100%;
height: auto;
left: 0%;
}
.sponsor1 {
position: absolute;
width: 45%;
height: 45%;
left: 0%;

}

.sponsor2{
position: absolute;
width: 45%;
height: 45%;
left: 55%;
}
.sponsor3{
position: absolute;
width: 45%;
height: 45%;
top: 55%;
left: 0%;
}
.sponsor4{
position: absolute;
width: 45%;
top: 55%;
height: 45%;
left: 55%;
}
Binary file added main/static/images/Alphabeta.jfif
Binary file not shown.
Binary file added main/static/images/Elearnmarkets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added main/static/images/Paxful.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added main/static/images/William.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion main/templates/main/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<meta charset="utf-8" name="viewport" content=" width = device-width, initial-scale = 1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SMS 2019</title>
<title>SMS 2021</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="{% static 'css/login.css' %}">
Expand Down Expand Up @@ -77,6 +77,14 @@ <h3>Login</h3>
<!-- <p><h5>Event is not live yet. Register after 21:00 IST (Read BST)</h5></p> -->
</div>

<div class="sponsors">
<img src="../static/images/alphabeta.jfif" class="sponsor1">
<img src="../static/images/Paxful.jpeg" class="sponsor2">
<img src="../static/images/William.png" class="sponsor3">
<img src="../static/images/Elearnmarkets.png" class="sponsor4">

</div>

<script type="text/javascript" src="{% static 'js/login.js' %}"></script>

</body>
Expand Down