initial commit
This commit is contained in:
@ -0,0 +1,418 @@
|
||||
#wpp-message { display: none; }
|
||||
|
||||
/*
|
||||
* Navigation
|
||||
*/
|
||||
#wpp-menu {
|
||||
float: none;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#wpp-menu ul {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wpp-menu ul li {
|
||||
padding: 0 15px 0 10px;
|
||||
margin: 0 0px;
|
||||
display: inline;
|
||||
border-right: #ddd 1px solid;
|
||||
}
|
||||
|
||||
#wpp-menu ul li:first-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wpp-menu ul li:last-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#wpp-menu ul li a {
|
||||
}
|
||||
|
||||
#wpp-menu ul li.current a {
|
||||
color: #00a0d2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wpp-wrapper {
|
||||
margin: 20px 20px 0 2px;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
}
|
||||
|
||||
.wpp-lightbox {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
z-index: 999;
|
||||
margin: -140px 0 0 -140px;
|
||||
padding: 15px;
|
||||
width: 250px;
|
||||
max-height: 280px;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
}
|
||||
|
||||
.wpp-lightbox-tabs {
|
||||
margin: 0 0 25px 0;
|
||||
padding: 0 0 0 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tabs li {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 15px 0 10px;
|
||||
border-right: #ddd 1px solid;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tabs li:first-child {
|
||||
padding: 0 15px 0 0;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tabs li:last-child {
|
||||
padding: 0 0 0 10px;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tabs li.active a {
|
||||
color: #00a0d2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tab-content {
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wpp-lightbox-tab-content-active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.wpp-lightbox form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.wpp-lightbox form input[type=text] {
|
||||
display: block;
|
||||
margin: 0 0 15px 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.wpp-section-stats {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wpp-section-stats .dashicons-admin-generic {
|
||||
position: absolute;
|
||||
top: 22px;
|
||||
left: 0;
|
||||
width: 21px;
|
||||
height: 21px;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.wpp-section-stats .dashicons-admin-generic:hover {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
|
||||
.wpp-header {
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
padding: 25px 0 0 0;
|
||||
}
|
||||
|
||||
.wpp-header h2,
|
||||
.wpp-header h3,
|
||||
.wpp-header h4,
|
||||
.wpp-header h5 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wpp-header h2 {
|
||||
margin: 0 0 5px 0;
|
||||
font-size: 1.0em;
|
||||
font-weight: 400;
|
||||
line-height: 1.0em;
|
||||
}
|
||||
|
||||
.wpp-header h3 {
|
||||
margin: 0 0 30px 0;
|
||||
font-size: 3.5em;
|
||||
letter-spacing: -1px;
|
||||
line-height: 1.0em;
|
||||
}
|
||||
|
||||
.wpp-header h4,
|
||||
#wpp-chart-wrapper h4 {
|
||||
margin: 0 0 8px 0;
|
||||
font-size: 2.0em;
|
||||
font-weight: 100;
|
||||
line-height: 1.0em;
|
||||
letter-spacing: -2px;
|
||||
}
|
||||
|
||||
.wpp-header h5,
|
||||
#wpp-chart-wrapper h5 {
|
||||
margin: 0 0 0 0;
|
||||
font-size: 0.9em;
|
||||
font-weight: 300;
|
||||
line-height: 0.9em;
|
||||
}
|
||||
|
||||
.wpp-header-nav {
|
||||
margin: 55px auto 0px auto;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wpp-header-nav li {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
margin: 0 4px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wpp-header-nav li a {
|
||||
display: inline-block;
|
||||
padding: 6px 12px 7px;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.wpp-section-stats .wpp-header-nav li a:hover,
|
||||
.wpp-section-stats .wpp-header-nav li.current a {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.wpp-section-stats .wpp-header-nav li.current a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wpp-chart-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wpp-chart-wrapper h4,
|
||||
#wpp-chart-wrapper h5 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wpp-chart-wrapper #wpp-chart {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 20px auto 0 auto;
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
#wpp-chart-wrapper #wpp-chart p {
|
||||
margin: 0 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wpp-chart-wrapper #wpp-chart a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.wpp-content {
|
||||
float: none;
|
||||
clear: both;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.wpp-content .wpp-tabbed-nav {
|
||||
overflow: hidden;
|
||||
margin: 0 0 0 0;
|
||||
padding: 0;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
.wpp-content .wpp-tabbed-nav li {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 25%;
|
||||
border-bottom: #f0f0f0 1px solid;
|
||||
}
|
||||
|
||||
.wpp-content .wpp-tabbed-nav li.active {
|
||||
border-bottom: #bbb 1px solid;
|
||||
}
|
||||
|
||||
.wpp-content .wpp-tabbed-nav li a {
|
||||
display: block;
|
||||
padding: 15px;
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#wpp-listing .wpp-tabbed-nav li a .fa {
|
||||
display: inline-block;
|
||||
margin: 0 8px 0 0;
|
||||
}
|
||||
|
||||
.wpp-tab-content {
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
padding: 2% 30px;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.wpp-tab-content-active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.wpp-tab-content .spinner {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
float: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.popular-posts-list {
|
||||
margin: 0 0 0 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
counter-reset: wpp-counter;
|
||||
font-size: 1rem;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.popular-posts-list li {
|
||||
counter-increment: wpp-counter;
|
||||
margin: 0 1% 15px 1%;
|
||||
padding: 0 0 10px 0;
|
||||
border-bottom: #f0f0f0 1px solid;
|
||||
}
|
||||
|
||||
.popular-posts-list li::before {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
content: counter(wpp-counter) ". ";
|
||||
}
|
||||
|
||||
.popular-posts-list li:last-child,
|
||||
.popular-posts-list li:last-child {
|
||||
margin: 0 1%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.popular-posts-list li a.wpp-title {
|
||||
display: inline;
|
||||
font-size: 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.popular-posts-list li:first-child,
|
||||
.popular-posts-list li:first-child a.wpp-title {
|
||||
font-size: 1.15em;
|
||||
}
|
||||
|
||||
.popular-posts-list li:nth-child(2),
|
||||
.popular-posts-list li:nth-child(2) a.wpp-title {
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.popular-posts-list li:first-child a.wpp-title,
|
||||
.popular-posts-list li:nth-child(2) a.wpp-title,
|
||||
.popular-posts-list li:nth-child(3) a.wpp-title {
|
||||
font-weight: bold;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.popular-posts-list li a.wpp-title:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.popular-posts-list li span {
|
||||
color: #bbb;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.popular-posts-list li small {
|
||||
display: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.popular-posts-list li:hover small {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#wpp_params {}
|
||||
|
||||
#wpp_params div {
|
||||
}
|
||||
|
||||
#wpp_params div table {
|
||||
width: 100%;
|
||||
min-width: 800px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
#wpp_params div table tr th {
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
border-bottom: #dedede 1px solid;
|
||||
}
|
||||
|
||||
#wpp_params div table tr th,
|
||||
#wpp_params div table tr td {
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#wpp_params div table tr td {
|
||||
position: static !important;
|
||||
clear: none !important;
|
||||
display: table-cell !important;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.clear {
|
||||
float:none;
|
||||
clear:both;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/*
|
||||
* Media Queries
|
||||
*/
|
||||
|
||||
/* Small devices */
|
||||
@media only screen and (max-width: 480px){
|
||||
|
||||
}
|
||||
|
||||
/* Tablets & small desktops */
|
||||
@media only screen and (max-width: 768px) {
|
||||
|
||||
.wpp-wrapper {
|
||||
margin: 20px 12px 0 2px;
|
||||
}
|
||||
|
||||
#wpp-listing .wpp-tabbed-nav li a span:last-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wpp-listing .wpp-tabbed-nav li a .fa {
|
||||
margin: 0 0 0 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Medium desktops, Large desktops & other devices */
|
||||
@media only screen and (max-width: 992px) { /* 960 + 16 + 16 */
|
||||
|
||||
}
|
@ -0,0 +1,399 @@
|
||||
/*! jQuery UI - v1.12.1 - 2017-08-15
|
||||
* http://jqueryui.com
|
||||
* Includes: core.css, datepicker.css
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ui-helper-hidden-accessible {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
.ui-helper-reset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
line-height: 1.3;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
list-style: none;
|
||||
}
|
||||
.ui-helper-clearfix:before,
|
||||
.ui-helper-clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.ui-helper-clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.ui-helper-zfix {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
filter:Alpha(Opacity=0); /* support: IE8 */
|
||||
}
|
||||
|
||||
.ui-front {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled {
|
||||
cursor: default !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
.ui-icon {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-top: -.25em;
|
||||
position: relative;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.ui-widget-icon-block {
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-datepicker {
|
||||
width: 17em;
|
||||
padding: .2em .2em 0;
|
||||
display: none;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-header {
|
||||
position: relative;
|
||||
padding: .2em 0;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev,
|
||||
.ui-datepicker .ui-datepicker-next {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
width: 1.8em;
|
||||
height: 1.8em;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev-hover,
|
||||
.ui-datepicker .ui-datepicker-next-hover {
|
||||
top: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev {
|
||||
left: 2px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-next {
|
||||
right: 2px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev-hover {
|
||||
left: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-next-hover {
|
||||
right: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev span,
|
||||
.ui-datepicker .ui-datepicker-next span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-title {
|
||||
margin: 0 2.3em;
|
||||
line-height: 1.8em;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-title select {
|
||||
font-size: 1em;
|
||||
margin: 1px 0;
|
||||
}
|
||||
.ui-datepicker select.ui-datepicker-month,
|
||||
.ui-datepicker select.ui-datepicker-year {
|
||||
width: 45%;
|
||||
}
|
||||
.ui-datepicker table {
|
||||
width: 100%;
|
||||
font-size: .9em;
|
||||
border-collapse: collapse;
|
||||
margin: 0 0 .4em;
|
||||
}
|
||||
.ui-datepicker th {
|
||||
padding: .7em .3em;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
}
|
||||
.ui-datepicker td {
|
||||
border: 0;
|
||||
padding: 1px;
|
||||
}
|
||||
.ui-datepicker td span,
|
||||
.ui-datepicker td a {
|
||||
display: block;
|
||||
padding: .2em;
|
||||
text-align: right;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane {
|
||||
background-image: none;
|
||||
margin: .7em 0 0 0;
|
||||
padding: 0 .2em;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane button {
|
||||
float: right;
|
||||
margin: .5em .2em .4em;
|
||||
cursor: pointer;
|
||||
padding: .2em .6em .3em .6em;
|
||||
width: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* with multiple calendars */
|
||||
.ui-datepicker.ui-datepicker-multi {
|
||||
width: auto;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group {
|
||||
float: left;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group table {
|
||||
width: 95%;
|
||||
margin: 0 auto .4em;
|
||||
}
|
||||
.ui-datepicker-multi-2 .ui-datepicker-group {
|
||||
width: 50%;
|
||||
}
|
||||
.ui-datepicker-multi-3 .ui-datepicker-group {
|
||||
width: 33.3%;
|
||||
}
|
||||
.ui-datepicker-multi-4 .ui-datepicker-group {
|
||||
width: 25%;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
||||
border-left-width: 0;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
||||
clear: left;
|
||||
}
|
||||
.ui-datepicker-row-break {
|
||||
clear: both;
|
||||
width: 100%;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
/* RTL support */
|
||||
.ui-datepicker-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-prev {
|
||||
right: 2px;
|
||||
left: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-next {
|
||||
left: 2px;
|
||||
right: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
||||
right: 1px;
|
||||
left: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
||||
left: 1px;
|
||||
right: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
||||
clear: right;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
||||
float: left;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
||||
.ui-datepicker-rtl .ui-datepicker-group {
|
||||
float: right;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
||||
border-right-width: 0;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
/* Icons */
|
||||
.ui-datepicker .ui-icon {
|
||||
display: block;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
left: .5em;
|
||||
top: .3em;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Custom datepicker theme for WPP.
|
||||
*
|
||||
* @author Hector Cabrera
|
||||
*/
|
||||
|
||||
.ui-datepicker {
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.ui-datepicker-header {}
|
||||
|
||||
.ui-datepicker .ui-datepicker-prev {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-next {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-prev span,
|
||||
.ui-datepicker .ui-datepicker-next span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
/*left: 50%;
|
||||
margin-left: -8px;
|
||||
top: 50%;
|
||||
margin-top: -8px;*/
|
||||
}
|
||||
|
||||
.ui-datepicker-prev:before,
|
||||
.ui-datepicker-next:after {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
display: inline-block;
|
||||
font-family: 'FontAwesome';
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.ui-datepicker-prev:before {
|
||||
left: 9px;
|
||||
content: "\f060";
|
||||
}
|
||||
|
||||
.ui-datepicker-next:after {
|
||||
right: 9px;
|
||||
content: "\f061";
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-prev-hover,
|
||||
.ui-datepicker .ui-datepicker-next-hover {
|
||||
top: 2px !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar {}
|
||||
|
||||
.ui-datepicker-calendar tr td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ui-datepicker-unselectable span {
|
||||
color: #ccc;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar tr td a {
|
||||
text-align: center;
|
||||
background: #fcfcfc;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar tr td.date-range-selected a {
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e;
|
||||
background: #e14d43;
|
||||
}
|
||||
|
||||
.ui-datepicker-buttonpane {}
|
||||
|
||||
.ui-datepicker-buttonpane button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px !important;
|
||||
border-color: #ccc;
|
||||
background: #f7f7f7;
|
||||
vertical-align: top;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-appearance: none;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Today button */
|
||||
.ui-datepicker-buttonpane .ui-datepicker-current {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-datepicker-buttonpane .ui-priority-primary {
|
||||
color: #fff;
|
||||
background: #e14d43;
|
||||
border-color: #d02c21 #ba281e #ba281e;
|
||||
-webkit-box-shadow: 0 1px 0 #ba281e;
|
||||
box-shadow: 0 1px 0 #ba281e;
|
||||
text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e;
|
||||
}
|
||||
|
||||
.ui-datepicker-buttonpane .ui-priority-primary:hover {
|
||||
background: #e35950;
|
||||
border-color: #ba281e;
|
||||
}
|
||||
|
||||
.ui-datepicker-buttonpane .ui-priority-secondary {
|
||||
color: #555;
|
||||
border-color: #ccc;
|
||||
background: #f7f7f7;
|
||||
-webkit-box-shadow: 0 1px 0 #ccc;
|
||||
box-shadow: 0 1px 0 #ccc;
|
||||
}
|
50
hamrokhaanpaan/wp-content/__plugins/wordpress-popular-posts/assets/css/fontello.css
vendored
Normal file
50
hamrokhaanpaan/wp-content/__plugins/wordpress-popular-posts/assets/css/fontello.css
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../fonts/fontello.eot?57329479');
|
||||
src: url('../fonts/fontello.eot?57329479#iefix') format('embedded-opentype'),
|
||||
url('../fonts/fontello.woff2?57329479') format('woff2'),
|
||||
url('../fonts/fontello.woff?57329479') format('woff'),
|
||||
url('../fonts/fontello.ttf?57329479') format('truetype'),
|
||||
url('../fonts/fontello.svg?57329479#fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
[class^="wpp-icon-"]:before, [class*=" icon-"]:before {
|
||||
font-family: "fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: none;
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
width: 1em;
|
||||
margin-right: .2em;
|
||||
text-align: center;
|
||||
/* opacity: .8; */
|
||||
|
||||
/* For safety - reset parent styles, that can break glyph codes*/
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
|
||||
/* fix buttons height, for twitter bootstrap */
|
||||
line-height: 1em;
|
||||
|
||||
/* Animation center compensation - margins should be symmetric */
|
||||
/* remove if not needed */
|
||||
margin-left: .2em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
|
||||
/* Font smoothing. That was taken from TWBS */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
.wpp-icon-eye:before { content: '\e800'; }
|
||||
.wpp-icon-award:before { content: '\e801'; }
|
||||
.wpp-icon-comment:before { content: '\f0e5'; }
|
||||
.wpp-icon-rocket:before { content: '\f135'; }
|
@ -0,0 +1,81 @@
|
||||
/*
|
||||
Wordpress Popular Posts plugin stylesheet
|
||||
Developed by Hector Cabrera
|
||||
cabrerahector.com | @cabrerahector
|
||||
|
||||
Use the following classes to style your popular posts list as you like.
|
||||
*/
|
||||
|
||||
/* Styles the "Sorry, no data so far" message */
|
||||
.wpp-no-data {
|
||||
}
|
||||
|
||||
/* UL - Popular Posts container styles */
|
||||
.wpp-list {
|
||||
}
|
||||
|
||||
/* LI - Post container styles */
|
||||
.wpp-list li {
|
||||
overflow: hidden;
|
||||
float: none;
|
||||
clear: both;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.wpp-list li:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Styles for the popular post in view */
|
||||
.wpp-list li.current {
|
||||
}
|
||||
|
||||
/* Thumbnail styles */
|
||||
.wpp-thumbnail {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin: 0 1rem 0 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Title styles */
|
||||
.wpp-post-title {
|
||||
}
|
||||
|
||||
/* Excerpt styles */
|
||||
.wpp-excerpt {
|
||||
}
|
||||
|
||||
/* Stats tag styles */
|
||||
.wpp-meta, .post-stats {
|
||||
display: block;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.wpp-meta:empty, .post-stats:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Comments count styles */
|
||||
.wpp-comments {
|
||||
}
|
||||
|
||||
/* Views count styles */
|
||||
.wpp-views {
|
||||
}
|
||||
|
||||
/* Author styles */
|
||||
.wpp-author {
|
||||
}
|
||||
|
||||
/* Post date styles */
|
||||
.wpp-date {
|
||||
}
|
||||
|
||||
/* Post category styles */
|
||||
.wpp-category {
|
||||
}
|
||||
|
||||
/* WP-PostRatings styles */
|
||||
.wpp-rating {
|
||||
}
|
Reference in New Issue
Block a user