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

Organizer grid #21

Merged
merged 6 commits into from Sep 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file added assets/img/headshots/akhil_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/headshots/alec_min_edit.jpg
Binary file not shown.
Binary file removed assets/img/headshots/alex_min_edit.jpg
Binary file not shown.
Binary file added assets/img/headshots/bhavik_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/headshots/brandon_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/headshots/emmanuel_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/headshots/jason_min_edit.jpg
Binary file not shown.
Binary file added assets/img/headshots/jeffrey_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/headshots/jessie_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/headshots/kristine_min_edit.jpg
Binary file not shown.
Binary file added assets/img/headshots/nerissa_min.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
326 changes: 163 additions & 163 deletions assets/img/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 40 additions & 2 deletions css/styles.css
Expand Up @@ -131,6 +131,12 @@ section {
transform: translateY(-50%);
}

#title-text {
font-size: 7vw;
font-weight: bold;
font-style: italic;
}

#logo-div {
padding: 15px;
}
Expand Down Expand Up @@ -174,10 +180,8 @@ section {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
width: 100%;
object-fit: contain;
box-shadow: 5px 5px 15px #AAA;
}

/* ----- GALLERY ----- */
Expand Down Expand Up @@ -408,6 +412,23 @@ section {
background-color: var(--panel-bg-light);
}

.organizer-img-div {
padding: 10px;
}

.organizer-img {
border-radius: 50%;
width: 80%;
object-fit: scale-down;
box-shadow: 0 4px 10px #BBB;
transition: all 0.25s ease-in-out;
margin-bottom: 10px;
}

.organizer-img:hover {
transform: scale(1.024, 1.024);
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bootstrap already has a .text-center class, so you don't need these lines here.

/* ----- FOOTER ----- */

footer {
Expand All @@ -417,6 +438,23 @@ footer {
text-align: center;
}

/* ---- SCROLL-TO-TOP BUTTON ---- */
/*#top-button {*/
/* position: fixed;*/
/* bottom: 35px;*/
/* right: 35px;*/
/* background: var(--bg-grey);*/
/* color: var(--panel-bg-light);*/
/* opacity: 0.9;*/
/* width: 50px;*/
/* height: 50px;*/
/* display: block;*/
/* border-radius: 50px;*/
/* z-index: 9999;*/
/* text-align: center;*/
/* padding-top: 12px;*/
/*}*/

/* ---- MEDIA QUERIES ---- */

/* Extra small devices (portrait phones, less than 576px)
Expand Down