frontPanel/src/index.css

38 lines
688 B
CSS
Raw Normal View History

2022-12-03 21:37:21 +00:00
body {
2023-12-31 02:53:25 +00:00
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;
2022-12-03 21:37:21 +00:00
}
/*скрывает все скролл-бары*/
body * {
-ms-overflow-style: none;
scrollbar-width: none;
}
body * ::-webkit-scrollbar {
display: none;
}
2022-12-03 21:37:21 +00:00
code {
2023-12-31 02:53:25 +00:00
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
@keyframes blinking {
2023-12-31 02:53:25 +00:00
0% {
opacity: 100;
}
50% {
opacity: 0;
}
100% {
opacity: 100;
}
}
.blink {
2023-12-31 02:53:25 +00:00
animation: blinking 2s infinite;
}