Skip to content
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.

Adding social divider #83

Open
wants to merge 2 commits into
base: dev
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
8 changes: 8 additions & 0 deletions src/components/Countdown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ class Countdown extends Component {
<div className="uk-countdown-label uk-text-center">SECS</div>
</div>
</div>
<ul className="divider-container uk-align-left">
<ul className="divider-wrapper uk-align-left">
<li className="uk-divider-vertical uk-align-center"></li>
<li className="uk-align-center" uk-icon="twitter"></li>
<li className="uk-align-center" uk-icon="instagram"></li>
<li className="uk-align-center" uk-icon="facebook"></li>
</ul>
</ul>
{/* <div className="next-year">SEE YOU NEXT YEAR!</div> */}
</div>
)
Expand Down
29 changes: 29 additions & 0 deletions src/components/Countdown/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,32 @@
font-family: 'Roboto Mono', monospace;
font-size: 20px;
}

.divider-container {
width: 98%;
margin-top: 6%;
color: #FF6E2C;
position: fixed;
margin-bottom: 0px;
left: 0%;
width: 10%;
}

.uk-divider-vertical {
height: 40vh;
border-left: 1px solid #FF6E2C;
width: 1px;
display: flex;
flex-flow: column;
}

.divider-wrapper {
margin-top: 10%;
margin-bottom: 0px;
}

@media screen and (max-width: 500px) {
.divider-container {
display: none;
}
}