-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
111 additions
and
12 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* Three columns side by side */ | ||
.column { | ||
float: left; | ||
width: 33.3%; | ||
margin-bottom: 16px; | ||
padding: 0 8px; | ||
} | ||
|
||
/* Display the columns below each other instead of side by side on small screens */ | ||
@media screen and (max-width: 650px) { | ||
.column { | ||
width: 100%; | ||
display: block; | ||
} | ||
} | ||
|
||
/* Add some shadows to create a card effect */ | ||
.card { | ||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
/* Some left and right padding inside the container */ | ||
.container { | ||
padding: 0 16px; | ||
} | ||
|
||
/* Clear floats */ | ||
.container::after, .row::after { | ||
content: ""; | ||
clear: both; | ||
display: table; | ||
} | ||
|
||
.title { | ||
color: grey; | ||
} | ||
|
||
.button { | ||
border: none; | ||
outline: 0; | ||
display: inline-block; | ||
padding: 8px; | ||
color: white; | ||
background-color: #000; | ||
text-align: center; | ||
cursor: pointer; | ||
width: 100%; | ||
} | ||
|
||
.button:hover { | ||
background-color: #555; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
{% block head %} | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'> | ||
<!-- Add icon library --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="{% static 'accounts/css/team.css' %}"> | ||
{% endblock %} | ||
{% block body %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="column"> | ||
<div class="card"> | ||
<img src="{% static 'accounts/img/img1.png' %}" alt="Rishi Banerjee"> | ||
<div class="container"> | ||
<h2>Rishi Banerjee</h2> | ||
<p class="title">Backend/Frontend Developer - Admin</p> | ||
<p>Knows how to copy paste code</p> | ||
<p>[email protected]</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="column"> | ||
<div class="card"> | ||
<img src="{% static 'accounts/img/img1.png' %}" alt="Pratik Jain"> | ||
<div class="container"> | ||
<h2>Pratik Jain</h2> | ||
<p class="title">Backend/Frontend Developer - Admin</p> | ||
<p>Wanted to make this in Node.js, well Django it is</p> | ||
<p>[email protected]</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="column"> | ||
<div class="card"> | ||
<img src="{% static 'accounts/img/img1.png' %}" alt="Prachal Goyal"> | ||
<div class="container"> | ||
<h2>Prachal Goyal</h2> | ||
<p class="title">Front-End Developer/Designer</p> | ||
<p>Took me 2 minutes to download this stolen front-end template.</p> | ||
<p>Just Follow me on Instagram</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters