This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from RitaOak/interface-updatesv3
Interface updatesv3
- Loading branch information
Showing
17 changed files
with
169 additions
and
77 deletions.
There are no files selected for viewing
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { html, LitElement } from 'lit-element'; | ||
import '@polymer/iron-icons/iron-icons.js'; | ||
import sharedStyles from '../../style/app.scss'; | ||
import infoBox from '../../style/info-box.scss'; | ||
|
||
class followersList extends LitElement { | ||
static get styles() { | ||
return [sharedStyles, infoBox]; | ||
} | ||
|
||
render() { | ||
return html` | ||
<nav class="level followers-top"> | ||
<div class="level-left"> | ||
<div class="level-item"> | ||
<div class="column is-flex news-feed-nav"> | ||
<figure class="image avatar-news-feed"> | ||
<img class="is-rounded avatar-news-feed" src="/images/avatar.jpg" /> | ||
</figure> | ||
<section class=infoBox-followers"> | ||
<h4> | ||
<a class="feed-user">Michael Brown</a> | ||
</h4> | ||
<p> | ||
Following since October 2019 | ||
</p> | ||
</section> | ||
</div> | ||
</div> | ||
</div> | ||
</hr> | ||
</nav> | ||
`; | ||
} | ||
} | ||
|
||
window.customElements.define('followers-list', followersList); |
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
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,19 @@ | ||
.calendar-p { | ||
color: white; | ||
font-size: 0.9em; | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
} | ||
|
||
.calendar-date { | ||
color: white; | ||
font-size: 0.9em; | ||
text-transform: uppercase; | ||
} | ||
.card-icon { | ||
color: white; | ||
} | ||
|
||
.calendar-card { | ||
background-color: #424242; | ||
} |
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
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
Oops, something went wrong.