fixed css
This commit is contained in:
parent
c25a64e737
commit
909dc4bf7c
|
@ -402,6 +402,227 @@ p.error-p-validate {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@font-face {
|
||||||
|
font-family: Alarm Clock;
|
||||||
|
src: url(alarm-clock.ttf);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Digital clock */
|
||||||
|
|
||||||
|
.visual-console-item .digital-clock {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
justify-items: center;
|
||||||
|
-ms-flex-line-pack: center;
|
||||||
|
align-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .digital-clock > span {
|
||||||
|
font-family: "Alarm Clock", "Courier New", Courier, monospace;
|
||||||
|
font-size: 50px;
|
||||||
|
|
||||||
|
/* To improve legibility */
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .digital-clock > span.date {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .digital-clock > span.timezone {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Analog clock */
|
||||||
|
|
||||||
|
.visual-console-item .analogic-clock {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .analogic-clock .hour-hand {
|
||||||
|
-webkit-animation: rotate-hour 43200s infinite linear;
|
||||||
|
animation: rotate-hour 43200s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .analogic-clock .minute-hand {
|
||||||
|
-webkit-animation: rotate-minute 3600s infinite linear;
|
||||||
|
animation: rotate-minute 3600s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visual-console-item .analogic-clock .second-hand {
|
||||||
|
-webkit-animation: rotate-second 60s infinite linear;
|
||||||
|
animation: rotate-second 60s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
#html-tabs .ui-widget-header {
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#html-tabs .ui-tabs-anchor {
|
||||||
|
float: none;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: horizontal;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: row;
|
||||||
|
flex-direction: row;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
#html-tabs .ui-tabs-anchor img {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#html-tabs .ui-tabs-nav li {
|
||||||
|
border-radius: 5px 5px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
label span.p-slider {
|
||||||
|
width: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li#li-size-item > label:not(:first-child),
|
||||||
|
li#li-position-item > label:not(:first-child) {
|
||||||
|
width: initial;
|
||||||
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li#li-image-item label {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: horizontal;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: row;
|
||||||
|
flex-direction: row;
|
||||||
|
-webkit-box-pack: end;
|
||||||
|
-ms-flex-pack: end;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
li#li-image-item label img {
|
||||||
|
-webkit-box-flex: initial;
|
||||||
|
-ms-flex: initial;
|
||||||
|
flex: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Styles for the solid icons */
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa,
|
||||||
|
.fa > svg,
|
||||||
|
.fa.medium,
|
||||||
|
.fa.medium > svg {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa.fa-small,
|
||||||
|
.fa.fa-small > svg {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa.fa-large,
|
||||||
|
.fa.fa-large > svg {
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-spin {
|
||||||
|
-webkit-animation: fa-spin 2s infinite linear;
|
||||||
|
animation: fa-spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-pulse {
|
||||||
|
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||||
|
animation: fa-spin 1s infinite steps(8);
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes fa-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fa-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.autocomplete {
|
||||||
|
/*the container must be positioned relative:*/
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.autocomplete input {
|
||||||
|
/*background: pink;*/
|
||||||
|
}
|
||||||
|
.autocomplete-items {
|
||||||
|
border: 1px solid #d4d4d4;
|
||||||
|
border-bottom: none;
|
||||||
|
border-top: none;
|
||||||
|
/*position the autocomplete items to be the same width as the container:*/
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
overflow: auto;
|
||||||
|
max-height: 150px;
|
||||||
|
max-width: 250px;
|
||||||
|
}
|
||||||
|
.autocomplete-items div {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #fff;
|
||||||
|
border-bottom: 1px solid #d4d4d4;
|
||||||
|
border-top: 1px solid #d4d4d4;
|
||||||
|
}
|
||||||
|
.autocomplete-items div:hover {
|
||||||
|
width: 100%;
|
||||||
|
background-color: #e9e9e9;
|
||||||
|
}
|
||||||
|
.autocomplete-active {
|
||||||
|
/*when navigating through the items using the arrow keys:*/
|
||||||
|
background-color: DodgerBlue !important;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Alarm Clock;
|
font-family: Alarm Clock;
|
||||||
src: url(alarm-clock.ttf);
|
src: url(alarm-clock.ttf);
|
||||||
|
@ -468,45 +689,5 @@ p.error-p-validate {
|
||||||
animation: rotate-second 60s infinite linear;
|
animation: rotate-second 60s infinite linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
#html-tabs .ui-widget-header {
|
|
||||||
background-color: #ffffff;
|
|
||||||
border: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#html-tabs .ui-tabs-anchor {
|
|
||||||
float: none;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
#html-tabs .ui-tabs-anchor img {
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#html-tabs .ui-tabs-nav li {
|
|
||||||
border-radius: 5px 5px 0px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
label span.p-slider {
|
|
||||||
width: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
li#li-size-item > label:not(:first-child),
|
|
||||||
li#li-position-item > label:not(:first-child) {
|
|
||||||
width: initial;
|
|
||||||
margin-left: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
li#li-image-item label {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
li#li-image-item label img {
|
|
||||||
flex: initial;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=vc.main.css.map*/
|
/*# sourceMappingURL=vc.main.css.map*/
|
File diff suppressed because one or more lines are too long
|
@ -310,10 +310,12 @@ p.error-p-validate {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Alarm Clock;
|
font-family: Alarm Clock;
|
||||||
src: url(alarm-clock.ttf);
|
src: url(alarm-clock.ttf);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
/* Digital clock */
|
/* Digital clock */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue