1021 lines
18 KiB
CSS
1021 lines
18 KiB
CSS
*, *:before, *:after {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body, html {
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
body { /*background: url('https://i.imgur.com/MoYBh1e.jpg') center center no-repeat; background-size: cover;*/
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
|
|
#ui {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
z-index: 11;
|
|
}
|
|
|
|
div.separator {
|
|
display: block;
|
|
clear: both;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
display: block;
|
|
position: relative;
|
|
padding: 10px 8px;
|
|
margin: 10px 5px 0 5px;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 100px;
|
|
overflow: hidden;
|
|
background: rgba(0,0,0,0.35);
|
|
}
|
|
|
|
.icon i {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
color: #FFF;
|
|
z-index: 11;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.icon i.rotated {
|
|
transform: translate(-50%, -50%) rotate(180deg);
|
|
}
|
|
|
|
.icon img {
|
|
width: 16px;
|
|
margin: -3px 0 0 0;
|
|
}
|
|
|
|
.icon span {
|
|
display: block;
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
transform: translate(-50%,0);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.icon.text {
|
|
display: inline-block;
|
|
overflow: visible;
|
|
width: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
.icon.text i {
|
|
display: inline-block;
|
|
float: left;
|
|
transform: translate(0%,0%);
|
|
left: 0;
|
|
top: 0;
|
|
position: relative;
|
|
padding: 10px 8px;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 100px;
|
|
color: #FFF;
|
|
}
|
|
|
|
.icon.text i:before {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
|
|
.icon.text span {
|
|
position: relative;
|
|
width: auto;
|
|
height: auto;
|
|
left: 0;
|
|
transform: translate(0,0);
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
padding: 7px 15px 0 10px;
|
|
font-weight: 700;
|
|
color: #FFF;
|
|
}
|
|
|
|
|
|
.icon.dying:not(.customstatus) span {
|
|
animation: bd-status-blink 500ms infinite;
|
|
}
|
|
|
|
.icon.pulse i {
|
|
animation: bd-pulse 500ms 1;
|
|
}
|
|
|
|
|
|
|
|
|
|
.info {
|
|
position: absolute;
|
|
}
|
|
|
|
.info.server {
|
|
top: 45px;
|
|
right: 26px;
|
|
width: 90px;
|
|
height: 90px;
|
|
}
|
|
|
|
.info.server #server img {
|
|
max-width: 100%;
|
|
opacity: 1;
|
|
}
|
|
|
|
.info.player {
|
|
top: 140px;
|
|
right: 25px;
|
|
text-align: right;
|
|
}
|
|
|
|
.info.player #job span {
|
|
font-size: 24px;
|
|
color: #fff;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info.player #money div[id] {
|
|
float: right;
|
|
}
|
|
|
|
.info.player #money {
|
|
clear: both;
|
|
}
|
|
|
|
.info.player #money #wallet i {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
}
|
|
|
|
.info.player #money #blackmoney i {
|
|
background: linear-gradient(180deg, #474747 0%, #252525 100%);
|
|
}
|
|
|
|
.info.player #money #bank i {
|
|
background: linear-gradient(180deg, #c70a0a 0%, #960505 100%);
|
|
}
|
|
|
|
.info.player #money #society i {
|
|
background: linear-gradient(180deg, #874c14 0%, #6a3c10 100%);
|
|
}
|
|
|
|
.info.player #money #wallet i:before {
|
|
content: '\f153';
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
.info.player #status {
|
|
clear: both;
|
|
}
|
|
|
|
.info.player #status ul {
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
.info.player #status ul li {
|
|
float: right;
|
|
}
|
|
|
|
.info.player #status ul li#health span {
|
|
background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%);
|
|
}
|
|
|
|
.info.player #status ul li#armor span {
|
|
background: linear-gradient(180deg, #0bcfe6 0%, #0aa3b5 100%);
|
|
}
|
|
|
|
.info.player #status ul li#stamina span {
|
|
background: linear-gradient(180deg, #ffb700 0%, #e0a102 100%);
|
|
}
|
|
|
|
.info.player #status ul li#hunger span {
|
|
background: linear-gradient(180deg, #ff8000 0%, #cd6700 100%);
|
|
}
|
|
|
|
.info.player #status ul li#thirst span {
|
|
background: linear-gradient(180deg, #00c3ff 0%, #008fbb 100%);
|
|
}
|
|
|
|
.info.player #status ul li#health.dead {
|
|
animation: bd-pulse 500ms infinite;
|
|
}
|
|
|
|
.info.player #status ul li#health.dead span {
|
|
height: 0 !important;
|
|
}
|
|
|
|
.info.player #status ul li#health.dead i.fas:before {
|
|
content: '\f714';
|
|
}
|
|
|
|
/*.info.vehicle { bottom: 40px; left: 50%; transform: translate(-50%,0); z-index: 11; }*/
|
|
.info.vehicle {
|
|
bottom: 11%;
|
|
left: 16%;
|
|
transform: translate(-50%,0);
|
|
z-index: 11;
|
|
}
|
|
|
|
.info.vehicle.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.info.vehicle.inactive {
|
|
opacity: 0;
|
|
}
|
|
|
|
.info.vehicle-passenger {
|
|
bottom: 3%;
|
|
left: 10%;
|
|
transform: translate(-50%,0);
|
|
z-index: 11;
|
|
}
|
|
|
|
.info.vehicle-passenger.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.info.vehicle-passenger.inactive {
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
.info.vehicle #speedometer {
|
|
position: relative;
|
|
width: 270px;
|
|
height: 130px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #progress-speed-progress {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translate(-50%,0) rotate(138deg);
|
|
width: 130px;
|
|
}
|
|
|
|
#progress-engine-progress {
|
|
width: 42px;
|
|
top: 79px;
|
|
left: 11.25%;
|
|
position: absolute;
|
|
transform: translate(-0%,0) rotate(138deg);
|
|
}
|
|
|
|
#progress-fuel-progress {
|
|
width: 42px;
|
|
top: 79px;
|
|
left: 63.35%;
|
|
position: absolute;
|
|
transform: translate(-0%,0) rotate(138deg);
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle {
|
|
display: block;
|
|
fill: transparent;
|
|
stroke-width: 10px;
|
|
stroke-linecap: round;
|
|
stroke-dasharray: 283;
|
|
stroke-dashoffset: 105;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm {
|
|
display: block;
|
|
fill: transparent;
|
|
stroke-width: 10px;
|
|
stroke-linecap: round;
|
|
stroke-dasharray: 283;
|
|
stroke-dashoffset: 75;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.mask, .info.vehicle #speedometer svg circle.sm.mask {
|
|
stroke: rgba(0,0,0,0.35);
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.speed, .info.vehicle #speedometer svg circle.sm.speed {
|
|
stroke: url(#speed-gradient);
|
|
stroke-dashoffset: 180;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg:first-child {
|
|
z-index: 11;
|
|
}
|
|
|
|
|
|
|
|
.info.vehicle #speedometer svg circle {
|
|
transition: all 250ms linear;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.zero {
|
|
stroke: #00c3ff;
|
|
stroke-dashoffset: 235;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.twentyfive {
|
|
stroke: #18b70b;
|
|
stroke-dashoffset: 180;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.fifty {
|
|
stroke: #ff8000;
|
|
stroke-dashoffset: 125;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.seventyfive {
|
|
stroke: #ff0000;
|
|
stroke-dashoffset: 75;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm {
|
|
transition: all 250ms linear;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.guagezero {
|
|
stroke: #ff0000;
|
|
stroke-dashoffset: 270;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.guagetwentyfive {
|
|
stroke: #cc760c;
|
|
stroke-dashoffset: 230;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.guagefifty {
|
|
stroke: #18b70b;
|
|
stroke-dashoffset: 182;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.guageseventyfive {
|
|
stroke: #18b70b;
|
|
stroke-dashoffset: 128;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.guagefull {
|
|
stroke: #18b70b;
|
|
stroke-dashoffset: 75;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.enginezero {
|
|
stroke: #ff0000;
|
|
stroke-dashoffset: 270;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.enginetwentyfive {
|
|
stroke: #ff0000;
|
|
stroke-dashoffset: 230;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.enginefifty {
|
|
stroke: #cc760c;
|
|
stroke-dashoffset: 182;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.engineseventyfive {
|
|
stroke: #bdab0b;
|
|
stroke-dashoffset: 128;
|
|
}
|
|
|
|
.info.vehicle #speedometer svg circle.sm.enginefull {
|
|
stroke: #18b70b;
|
|
stroke-dashoffset: 75;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-speed {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
text-align: center;
|
|
color: #FFF;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-speed span {
|
|
display: block;
|
|
font-weight: 900;
|
|
font-size: 30px;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-speed strong {
|
|
display: inline-block;
|
|
font-size: 10px;
|
|
font-weight: 900;
|
|
padding: 2px 5px;
|
|
border-radius: 100px;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
transition: all 150ms linear;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-speed strong.on {
|
|
background: #18b70b;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-gear,
|
|
.info.vehicle #speedometer #vehicle-others {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
width: 69px;
|
|
transform: translate(-50%,0);
|
|
margin: auto;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-others.yes {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-others.med {
|
|
background: linear-gradient(180deg, #bdab0b 0%, #7a6f07 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-others.low {
|
|
background: linear-gradient(180deg, #cc760c 0%, #854d09 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-others.off {
|
|
background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
|
|
|
|
|
|
.info.vehicle #speedometer #vehicle-gear.pulsing {
|
|
animation: bd-siren 1s infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-gear i {
|
|
top: -2px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-gear span {
|
|
padding: 5px 15px 0 10px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #altimeter {
|
|
position: absolute;
|
|
bottom: 40px;
|
|
left: 218px;
|
|
color: white;
|
|
}
|
|
|
|
.info.vehicle #speedometer #altimeter span {
|
|
font-weight: 900;
|
|
font-size: 30px;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
}
|
|
|
|
.info.vehicle #speedometer #altimeter strong {
|
|
display: inline-block;
|
|
font-size: 10px;
|
|
font-weight: 900;
|
|
padding: 2px 5px;
|
|
border-radius: 100px;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
transition: all 150ms linear;
|
|
}
|
|
|
|
.info.vehicle #speedometer #engine.good {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
}
|
|
|
|
.info.vehicle #speedometer #engine.ok {
|
|
background: linear-gradient(180deg, #bdab0b 0%, #7a6f07 100%);
|
|
}
|
|
|
|
.info.vehicle #speedometer #engine.bad {
|
|
background: linear-gradient(180deg, #cc760c 0%, #854d09 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer #engine.broke {
|
|
background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-status-left {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
left: -9px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-status-left ul li {
|
|
float: left;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-status-right {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
right: -22px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #vehicle-status-right ul li {
|
|
float: left;
|
|
}
|
|
|
|
.info.vehicle #speedometer #seatbelt {
|
|
position: absolute;
|
|
left: 38px;
|
|
top: 45px;
|
|
}
|
|
|
|
.info.vehicle #speedometer #seatbelt svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
animation: bd-status-blink 1500ms infinite;
|
|
stroke: rgba(0,0,0,.5);
|
|
stroke-width: 380px;
|
|
stroke-dasharray: 2,2;
|
|
stroke-linejoin: round;
|
|
fill: red;
|
|
}
|
|
|
|
.info.vehicle #speedometer #seatbelt.on svg {
|
|
fill: rgba(0,175,0,0.70);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle #speedometer #seatbelt.disabled svg {
|
|
fill: rgba(100,100,100,.70);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle-passenger #seatbelt-passenger svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
animation: bd-status-blink 1500ms infinite;
|
|
stroke: rgba(0,0,0,.5);
|
|
stroke-width: 380px;
|
|
stroke-dasharray: 2,2;
|
|
stroke-linejoin: round;
|
|
fill: red;
|
|
}
|
|
|
|
.info.vehicle-passenger #seatbelt-passenger.on svg {
|
|
fill: rgba(0,175,0,0.70);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle-passenger #seatbelt-passenger.disabled svg {
|
|
fill: rgba(100,100,100,.70);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle #speedometer li#fuel span {
|
|
background: linear-gradient(180deg, #ff8000 0%, #cd6700 100%);
|
|
}
|
|
|
|
.info.vehicle #speedometer li#lights.normal span {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle #speedometer li#lights.high span {
|
|
background: linear-gradient(180deg, #00c3ff 0%, #008fbb 100%);
|
|
animation: none;
|
|
}
|
|
|
|
.info.vehicle #speedometer li#signalL.dying span {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.info.vehicle #speedometer li#signalR.dying span {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
animation: bd-status-blink 750ms infinite;
|
|
}
|
|
|
|
.fuel100 {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%) !important;
|
|
}
|
|
|
|
.fuel75 {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%) !important;
|
|
}
|
|
|
|
.fuel50 {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%) !important;
|
|
}
|
|
|
|
.fuel25 {
|
|
background: linear-gradient(180deg, #cc760c 0%, #854d09 100%) !important;
|
|
}
|
|
|
|
.fuel0 {
|
|
background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%) !important;
|
|
}
|
|
|
|
|
|
#fuel.aircraft {
|
|
top: 94px;
|
|
left: 14.6%;
|
|
position: absolute;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.info.weapon {
|
|
bottom: 150px;
|
|
right: 25px;
|
|
}
|
|
|
|
.info.weapon.armed {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
|
|
.info.weapon.unarmed {
|
|
display: none;
|
|
opacity: 0;
|
|
}
|
|
|
|
.info.weapon #weapon_image {
|
|
float: left;
|
|
width: 200px;
|
|
height: 40px;
|
|
text-align: left;
|
|
position: relative;
|
|
}
|
|
|
|
.info.weapon #weapon_image img {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 25px;
|
|
transform: translateY(-50%);
|
|
height: 40px;
|
|
}
|
|
|
|
.info.weapon #weapon_bullets {
|
|
color: #FFF;
|
|
float: left;
|
|
width: 35px;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
line-height: 1;
|
|
}
|
|
|
|
.info.weapon #weapon_bullets .clip {
|
|
font-weight: 900;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.info.weapon #weapon_bullets .ammo {
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
|
|
.info.weapon #bullets {
|
|
margin: 0;
|
|
float: left;
|
|
margin: 5px 0 0 20px;
|
|
overflow: visible;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.info.weapon #bullets i {
|
|
color: #FFF;
|
|
float: right;
|
|
height: 34px;
|
|
width: 34px;
|
|
border-radius: 100px;
|
|
}
|
|
|
|
.info.weapon #bullets i.clone {
|
|
background: none;
|
|
position: absolute;
|
|
float: none;
|
|
top: 15px;
|
|
left: inherit;
|
|
left: 10px;
|
|
opacity: 0;
|
|
}
|
|
|
|
.info.weapon #bullets.shooting i.clone {
|
|
animation: bd-bullets 250ms 1;
|
|
}
|
|
|
|
.info.weapon #bullets i img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-35%);
|
|
}
|
|
|
|
|
|
.info.money {
|
|
top: 140px;
|
|
right: 25px;
|
|
text-align: right;
|
|
}
|
|
|
|
.info.money #money div[id] {
|
|
float: right;
|
|
}
|
|
|
|
.info.money #money {
|
|
clear: both;
|
|
}
|
|
|
|
.info.money #money #wallet i {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
}
|
|
|
|
.info.money #money #blackMoney i {
|
|
background: linear-gradient(180deg, #474747 0%, #252525 100%);
|
|
}
|
|
|
|
.info.money #money #bank i {
|
|
background: linear-gradient(180deg, #c70a0a 0%, #960505 100%);
|
|
}
|
|
|
|
#money div[id] {
|
|
float: right;
|
|
}
|
|
|
|
#money {
|
|
clear: both;
|
|
}
|
|
|
|
#money #wallet i {
|
|
background: linear-gradient(180deg, #18b70b 0%, #128c08 100%);
|
|
}
|
|
|
|
#money #bank i {
|
|
background: linear-gradient(180deg, #c70a0a 0%, #960505 100%);
|
|
}
|
|
|
|
|
|
|
|
/* .info.radio { bottom: 19px; right: 25px; z-index: 11; } */
|
|
/* .info.radio #voice { width: 35px; height: 35px; border-radius: 50%; overflow: hidden; background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); text-align: center; padding: 7px 0 0 0; transition: all 0.1s linear; } */
|
|
|
|
/* .info.radio #voice.whisper { background: linear-gradient(180deg, #ffb700 0%, #e0a102 100%); } */
|
|
/* .info.radio #voice.normal { background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); } */
|
|
/* .info.radio #voice.shout { background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%); } */
|
|
/* .info.radio #voice i.fas { font-size: 18px; color: #FFF; } */
|
|
/* .info.radio #voice.speak { animation: bd-soundwave 1s infinite; } */
|
|
|
|
/* .info.time-and-place { position: absolute; bottom: 18px; right: 65px; height: 38px; font-size: 11px; color: #FFF; background: rgba(0,0,0,0.35); border-radius: 100px; text-align: right; } */
|
|
|
|
/* .info.time-and-place .data { position: relative; top: 50%; transform: translate(0,-50%); } */
|
|
/* .info.time-and-place .data div { padding: 0 25px; } */
|
|
|
|
#uiall {
|
|
display: block;
|
|
}
|
|
|
|
#minimal-ui {
|
|
position: absolute;
|
|
bottom: 4%;
|
|
/*height: 30px;*/
|
|
transform: translate(-50%,0);
|
|
left: 50%;
|
|
opacity: 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#minimal-info {
|
|
z-index: 11;
|
|
padding: 6px;
|
|
opacity: 0;
|
|
background-color: rgba(0,0,0,0.3);
|
|
border-radius: 17px;
|
|
}
|
|
|
|
#minimal-info.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
#minimal-info.inactive {
|
|
opacity: 0;
|
|
}
|
|
|
|
#minimal-vehicle-speed {
|
|
position: relative;
|
|
left: 0;
|
|
color: white;
|
|
text-shadow: 0px 1px 1px rgb(0 0 0 / 75%);
|
|
top: 0;
|
|
width: 100%;
|
|
text-align: right;
|
|
}
|
|
|
|
#minimal-vehicle-speedk {
|
|
position: relative;
|
|
left: 0;
|
|
color: white;
|
|
text-shadow: 0px 1px 1px rgb(0 0 0 / 75%);
|
|
top: 0;
|
|
width: 100%;
|
|
text-align: right;
|
|
}
|
|
|
|
#minimal-vehicle-speedk span, #minimal-vehicle-speedk strong, #minimal-vehicle-speed span, #minimal-vehicle-speed strong {
|
|
position: relative;
|
|
}
|
|
|
|
#minimal-vehicle-fuel {
|
|
position: absolute;
|
|
left: 240px;
|
|
color: white;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
display: none;
|
|
}
|
|
|
|
#minimal-vehicle-alt {
|
|
position: absolute;
|
|
left: 360px;
|
|
color: white;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
|
|
opacity: 0;
|
|
white-space: nowrap;
|
|
display: none;
|
|
}
|
|
|
|
#minimal-ui strong {
|
|
font-size: 12px;
|
|
}
|
|
|
|
@keyframes bd-siren {
|
|
0% {
|
|
border-color: rgba(255,0,0,0);
|
|
box-shadow: 0 0 10px 10px rgba(255,0,0,0);
|
|
}
|
|
|
|
50% {
|
|
border-color: rgba(255,0,0,1);
|
|
box-shadow: 0 0 10px 10px rgba(255,0,0,0.50);
|
|
}
|
|
|
|
100% {
|
|
border-color: rgba(255,0,0,0);
|
|
box-shadow: 0 0 10px 10px rgba(255,0,0,0);
|
|
}
|
|
}
|
|
|
|
@keyframes bd-soundwave {
|
|
0% {
|
|
box-shadow: 0 0 0 0px rgba(255,255,255,0.75);
|
|
}
|
|
|
|
100% {
|
|
box-shadow: 0 0 0 25px rgba(255,255,255,0);
|
|
}
|
|
}
|
|
|
|
@keyframes bd-status-blink {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes bd-pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
25% {
|
|
transform: scale(1.5);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes bd-speed {
|
|
0% {
|
|
stroke-dashoffset: 280;
|
|
}
|
|
|
|
50% {
|
|
stroke-dashoffset: 75;
|
|
}
|
|
|
|
100% {
|
|
stroke-dashoffset: 280;
|
|
}
|
|
}
|
|
|
|
@keyframes bd-bullets {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
25% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform: translate(30px,-60px) rotate(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes bd-rainbow {
|
|
100%, 0% {
|
|
background: rgba(255,0,0,0.70);
|
|
}
|
|
|
|
8% {
|
|
background: rgba(255,127,0,0.70);
|
|
}
|
|
|
|
16% {
|
|
background: rgba(230,205,23,0.70);
|
|
}
|
|
|
|
25% {
|
|
background: rgba(127,255,0,0.70);
|
|
}
|
|
|
|
33% {
|
|
background: rgba(0,255,0,0.70);
|
|
}
|
|
|
|
41% {
|
|
background: rgba(0,255,127,0.70);
|
|
}
|
|
|
|
50% {
|
|
background: rgba(0,255,255,0.70);
|
|
}
|
|
|
|
58% {
|
|
background: rgba(0,127,255,0.70);
|
|
}
|
|
|
|
66% {
|
|
background: rgba(0,0,255,0.70);
|
|
}
|
|
|
|
75% {
|
|
background: rgba(127,0,255,0.70);
|
|
}
|
|
|
|
83% {
|
|
background: rgba(255,0,255,0.70);
|
|
}
|
|
|
|
91% {
|
|
background: rgba(255,0,127,0.70);
|
|
}
|
|
}
|