mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 09:18:56 +00:00
5c60c94197
- Adds warning class
82 lines
1.8 KiB
CSS
82 lines
1.8 KiB
CSS
html::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
@media (width: 3840px) and (height: 2160px) {
|
|
.success {
|
|
background-color: rgba(23, 23, 23, 90%);
|
|
border-radius: 10px;
|
|
box-shadow: 0rem 0rem 0.1rem 0.05rem #000000;
|
|
border-left: 0.5rem solid #20bb44;
|
|
font-size: 1.5vh;
|
|
}
|
|
|
|
.primary {
|
|
background-color: rgba(23, 23, 23, 90%);
|
|
border-radius: 10px;
|
|
box-shadow: 0rem 0rem 0.1rem 0.05rem #000000;
|
|
border-left: 5px solid #1c75d2;
|
|
font-size: 1.5vh;
|
|
}
|
|
|
|
.error {
|
|
background-color: rgba(23, 23, 23, 90%);
|
|
border-radius: 10px;
|
|
box-shadow: 0rem 0rem 0.1rem 0.05rem #000000;
|
|
border-left: 5px solid #c10114;
|
|
font-size: 1.5vh;
|
|
}
|
|
|
|
.police {
|
|
background-color: rgba(23, 23, 23, 90%);
|
|
border-radius: 10px;
|
|
box-shadow: 0rem 0rem 0.1rem 0.05rem #000000;
|
|
border-left: 5px solid #2197f2;
|
|
font-size: 1.5vh;
|
|
}
|
|
|
|
.ambulance {
|
|
background-color: rgba(23, 23, 23, 90%);
|
|
border-radius: 10px;
|
|
box-shadow: 0rem 0rem 0.1rem 0.05rem #000000;
|
|
border-left: 5px solid #f44236;
|
|
font-size: 1.5vh;
|
|
}
|
|
}
|
|
|
|
.success {
|
|
background-color: #20bb44;
|
|
border-radius: 5px;
|
|
border: 1px solid #6ae587;
|
|
}
|
|
|
|
.primary {
|
|
background-color: #1c75d2;
|
|
border-radius: 5px;
|
|
border: 1px solid #6facec;
|
|
}
|
|
|
|
.warning {
|
|
background-color: #ff9800;
|
|
border-radius: 5px;
|
|
border: 1px solid #ffc107;
|
|
}
|
|
|
|
.error {
|
|
background-color: #c10114;
|
|
border-radius: 5px;
|
|
border: 1px solid #fe4255;
|
|
}
|
|
|
|
.police {
|
|
background-color: #2197f2;
|
|
border-radius: 5px;
|
|
border: 1px solid #7ac1f7;
|
|
}
|
|
|
|
.ambulance {
|
|
background-color: #f44236;
|
|
border-radius: 5px;
|
|
border: 1px solid #f88e86;
|
|
}
|