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

New CSS Themes #8

Open
wants to merge 1 commit into
base: master
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
79 changes: 79 additions & 0 deletions zen/css/embed-basic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/***************************************************
*
* CASH Music - Embedded Elements Styles - Basic Default
* Created by CASH Music
*
***************************************************/

/* General */

#mainspc{
background:none;
color:#333;
width:100%;
padding: 0;
}


/* Forms */

input{
background-color: rgba(255,255,255,0.4);
color:#222;
}

::-webkit-input-placeholder{color:#222;}
placeholder{color:#222;}

input[type=email] {
color: #333;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
background-color: rgba(255,255,255,0.85);
color: #333;
}

.cash_input_address {
color: #000;
}

.cash_comments{
color:#333;
}


/* Single Purchase */

.cash_singlepurchase_flexible_price .cash_singlepurchase_currency{
color:#333;
}

.cash_timeandplace {
color:#333;
}


/* Tour Dates */

.tourdates .cash_event:first-child {
border-top: 1px solid #999;
}

.tourdates .cash_event:nth-child(even) {
background: none;
border-bottom: 1px solid #999;
}

.tourdates .cash_event:nth-child(odd) {
background:none;
border-bottom: 1px solid #999;
}

/* -- Mid Size + Above / Vertical Tablet -- */
@media screen and (min-width: 535px){
#mainspc{
padding:0;
width:100%;
}
}
32 changes: 32 additions & 0 deletions zen/css/embed-dark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/***************************************************
*
* CASH Music - Embedded Elements Styles - Dark Default
* Created by CASH Music
*
***************************************************/

/* General */

#mainspc{
background:#000;
background:rgba(0,0,0,0.9);
color:#f5f5f5;
padding:4%;
width:100%;
}

.cash_comments{
color:#444;
}

.singlepurchase .cash_singlepurchase_itemprice, .cash_notation {
color:#777;
}

/* -- Mid Size + Above / Vertical Tablet -- */
@media screen and (min-width: 535px){
#mainspc{
padding:2%;
width:100%;
}
}
72 changes: 72 additions & 0 deletions zen/css/embed-tint.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/***************************************************
*
* CASH Music - Embedded Elements Styles - Tint Default
* Created by CASH Music
*
***************************************************/

/* General */

#mainspc{
background:#000;
background:rgba(0,0,0,0.15);
color:#333;
padding:4%;
width:100%;
}

/* Forms */

input{
color:#222;
}

::-webkit-input-placeholder{color:#222;}
placeholder{color:#222;}

input[type=email] {
color: #333;
}

input, input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
background-color: #fff;
color: #333;
}

.cash_input_address {
color: #000;
}

.cash_comments{
color:#fff;
}


/* Single Purchase */

.singlepurchase .cash_singlepurchase_itemprice, .cash_notation {
color:#fff;
}

.cash_singlepurchase_flexible_price .cash_singlepurchase_currency {
color:#333;
}


/* Tour Dates */

.tourdates .cash_event:nth-child(even) {
background: none;
}

.tourdates .cash_event:nth-child(odd) {
background:rgba(0,0,0,0.1);
}

/* -- Mid Size + Above / Vertical Tablet -- */
@media screen and (min-width: 535px){
#mainspc{
padding:2%;
width:100%;
}
}
78 changes: 78 additions & 0 deletions zen/css/embed-white.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/***************************************************
*
* CASH Music - Embedded Elements Styles - White Default
* Created by CASH Music
*
***************************************************/

/* General */

#mainspc{
background:#fff;
background:rgba(255,255,255,1);
border: 1px solid #ccc;
color:#333;
padding:4%;
width:100%;
}


/* Forms */

::-webkit-input-placeholder{color:#333;}
placeholder{color:#333;}

input:focus::-webkit-input-placeholder{color:#333;}
input:focus placeholder{color:#333;}

input {
background-color: #e6e6e6;
color: #333;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
background-color: #f0f0f0;
color: #333;
}

.cash_input_address {
color: #000;
}

.cash_comments{
color:#333;
}


/* Single Purchase */

.singlepurchase .cash_singlepurchase_itemprice, .cash_notation {
color:#333;
}

.cash_singlepurchase_flexible_price .cash_singlepurchase_currency {
color:#333;
}


/* Tour Dates */

.tourdates .cash_event:nth-child(even) {
background: #f0f0f0;
background:rgba(240,240,240,1);
color:#333;
}

.tourdates .cash_event:nth-child(odd) {
background: #fafafa;
background:rgba(250,250,250,1);
color:#333;
}

/* -- Mid Size + Above / Vertical Tablet -- */
@media screen and (min-width: 535px){
#mainspc{
padding:2%;
width:100%;
}
}