App Store Pre-Sale Feature
This commit is contained in:
121
public/css/countdown.css
vendored
Normal file
121
public/css/countdown.css
vendored
Normal file
@ -0,0 +1,121 @@
|
||||
|
||||
/*-----------------------------------------------------------------------------------
|
||||
|
||||
Shortcodes: countdown.css
|
||||
|
||||
-----------------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
Countdown
|
||||
-----------------------------------------------------------------*/
|
||||
|
||||
.countdown { display: block; }
|
||||
|
||||
.countdown-row {
|
||||
display: block;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.countdown-section {
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
width: 25%;
|
||||
border-left: 1px dotted #BBB;
|
||||
color: #888;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.countdown-section:first-child { border-left: 0; }
|
||||
|
||||
.countdown-amount {
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.countdown-descr {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* Countdown - Medium
|
||||
-----------------------------------------------------------------*/
|
||||
|
||||
.countdown-medium .countdown-section { font-size: 14px; }
|
||||
|
||||
.countdown-medium .countdown-amount {
|
||||
font-size: 30px;
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
|
||||
|
||||
/* Countdown - Large
|
||||
-----------------------------------------------------------------*/
|
||||
|
||||
.countdown-large .countdown-section { font-size: 18px; }
|
||||
|
||||
.countdown-large .countdown-amount {
|
||||
font-size: 44px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
|
||||
/* Countdown - Inline
|
||||
-----------------------------------------------------------------*/
|
||||
|
||||
.countdown.countdown-inline { display: inline-block; }
|
||||
|
||||
.countdown.countdown-inline .countdown-row {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.countdown.countdown-inline .countdown-section {
|
||||
display: inline-block;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
width: auto;
|
||||
border: none;
|
||||
color: inherit;
|
||||
margin-left: 7px;
|
||||
text-transform: inherit;
|
||||
}
|
||||
|
||||
.countdown.countdown-inline .countdown-section:first-child { margin-left: 0; }
|
||||
|
||||
.countdown.countdown-inline .countdown-amount {
|
||||
display: inline-block;
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
font-weight: bold;
|
||||
margin: 0 3px 0 0;
|
||||
}
|
||||
|
||||
.countdown.countdown-inline .countdown-descr {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
/* Countdown - Coming Soon
|
||||
-----------------------------------------------------------------*/
|
||||
|
||||
body:not(.device-xs):not(.device-xxs) .countdown.countdown-large.coming-soon .countdown-section {
|
||||
border: none;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
body:not(.device-xs):not(.device-xxs) .countdown.countdown-large.coming-soon .countdown-amount {
|
||||
height: 140px;
|
||||
line-height: 140px;
|
||||
border-radius: 50%;
|
||||
background-color: rgba(0,0,0,0.2);
|
||||
margin-bottom: 15px !important;
|
||||
}
|
54
public/css/jquery.countdown.css
vendored
Normal file
54
public/css/jquery.countdown.css
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
/* jQuery Countdown styles 2.0.0. */
|
||||
.is-countdown {
|
||||
border: 1px solid #ccc;
|
||||
background-color: #eee;
|
||||
}
|
||||
.countdown-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.countdown-holding span {
|
||||
color: #888;
|
||||
}
|
||||
.countdown-row {
|
||||
clear: both;
|
||||
width: 100%;
|
||||
padding: 0px 2px;
|
||||
text-align: center;
|
||||
}
|
||||
.countdown-show1 .countdown-section {
|
||||
width: 98%;
|
||||
}
|
||||
.countdown-show2 .countdown-section {
|
||||
width: 48%;
|
||||
}
|
||||
.countdown-show3 .countdown-section {
|
||||
width: 32.5%;
|
||||
}
|
||||
.countdown-show4 .countdown-section {
|
||||
width: 24.5%;
|
||||
}
|
||||
.countdown-show5 .countdown-section {
|
||||
width: 19.5%;
|
||||
}
|
||||
.countdown-show6 .countdown-section {
|
||||
width: 16.25%;
|
||||
}
|
||||
.countdown-show7 .countdown-section {
|
||||
width: 14%;
|
||||
}
|
||||
.countdown-section {
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 75%;
|
||||
text-align: center;
|
||||
}
|
||||
.countdown-amount {
|
||||
font-size: 200%;
|
||||
}
|
||||
.countdown-period {
|
||||
display: block;
|
||||
}
|
||||
.countdown-descr {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
Reference in New Issue
Block a user