mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
68 lines
1.5 KiB
CSS
68 lines
1.5 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');
|
|
|
|
html {
|
|
color-scheme: normal !important;
|
|
}
|
|
|
|
body {
|
|
background: none !important;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
|
|
'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
height: 100vh;
|
|
user-select: none;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
}
|
|
|
|
@keyframes progress {
|
|
0% {
|
|
stroke-dasharray: 0, 264;
|
|
}
|
|
100% {
|
|
stroke-dasharray: 264, 0;
|
|
}
|
|
}
|
|
|
|
@keyframes progress-bar {
|
|
from {
|
|
width: 0%;
|
|
}
|
|
to {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.toast-inform {
|
|
background-color: #2980b9;
|
|
}
|
|
|
|
.toast-success {
|
|
background-color: #27ae60;
|
|
}
|
|
|
|
.toast-error {
|
|
background-color: #c0392b;
|
|
}
|