Skip to content
This repository has been archived by the owner on Mar 12, 2018. It is now read-only.

Commit

Permalink
Fix issues with the color of the text #4
Browse files Browse the repository at this point in the history
  • Loading branch information
iblancasa committed Oct 12, 2017
1 parent 2425a1f commit 1e1ec30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions src/elements/about-block.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
text-align: justify;
}

.about-item p{
color: #000;
}

.about-item:not(:first-of-type) {
margin-top: 30px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/elements/statistics-block.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
:host {
display: block;
background: var(--default-primary-color);
color: var(--text-primary-color);
color: #fff;
}

.container {
Expand Down
4 changes: 2 additions & 2 deletions src/elements/tickets-block.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

<div class="container">
<div class="block-header">
<h4 class="heading">{$ ticketsTitle $}</h4>
<h4 class="heading" style="color:#fff;">{$ ticketsTitle $}</h4>
</div>
<div class="tickets-wrapper">
<template is="dom-repeat" items="[[app.tickets.elements]]" as="ticket">
Expand All @@ -82,7 +82,7 @@ <h4 class="heading">{$ ticketsTitle $}</h4>
</ticket-element>
</template>
</div>
<div class="details">{$ ticketsDetails $}</div>
<div class="details" style="color:#fff;">{$ ticketsDetails $}</div>
<a href="[[app.tickets.url]]" target="_blank" rel="noopener noreferrer" on-tap="_trackBuyClick">
<paper-button class="buy-button" raised>{$ buyTicket $}</paper-button>
</a>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/shared-styles.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
--dark-primary-color: #303F9F;
--default-primary-color: #3F51B5;
--light-primary-color: #C5CAE9;
--text-primary-color: #FFFFFF; /* text / icons */
--text-primary-color: #333; /* text / icons */

/* Accent colors */
--accent-color: #FF4081;
Expand All @@ -24,7 +24,7 @@
--primary-background-color: #303F9F;

/* Text colors */
--primary-text-color: #fff;
--primary-text-color: #333;
--secondary-text-color: #757575;
--disabled-text-color: #BDBDBD;

Expand Down

0 comments on commit 1e1ec30

Please sign in to comment.