lending-next/styles/globals.css
2022-05-07 00:23:01 +03:00

42 lines
730 B
CSS

html,a {
color: inherit;
text-decoration: none;
}
html{
overflow-x: hidden;
}
* {
box-sizing: border-box;
scroll-behavior: smooth;
outline: none;
transition: 0.3s;
color: #323232;
font-family: 'Inconsolata', monospace;
}
h1,h2{
text-align: center;
}
body{
background: #FAFAFA;
overflow-x: hidden;
}
html::-webkit-scrollbar, .modal::-webkit-scrollbar {
width: 10px;
background-color: #f9f9fd;
}
html::-webkit-scrollbar-thumb, .modal::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #FFCB7F;
}
html::-webkit-scrollbar-track, .modal::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
border-radius: 10px;
background-color: #f9f9fd;
}