lending-next/styles/globals.css

42 lines
730 B
CSS
Raw Permalink Normal View History

2022-05-03 21:34:11 +03:00
html,a {
2022-03-19 01:21:04 +03:00
color: inherit;
text-decoration: none;
}
2022-05-03 21:34:11 +03:00
html{
overflow-x: hidden;
}
2022-03-19 01:21:04 +03:00
* {
box-sizing: border-box;
2022-03-27 13:32:40 +03:00
scroll-behavior: smooth;
outline: none;
transition: 0.3s;
color: #323232;
font-family: 'Inconsolata', monospace;
2022-03-19 01:21:04 +03:00
}
2022-05-07 00:23:01 +03:00
h1,h2{
text-align: center;
}
2022-03-27 14:42:19 +03:00
body{
background: #FAFAFA;
overflow-x: hidden;
}
html::-webkit-scrollbar, .modal::-webkit-scrollbar {
width: 10px;
background-color: #f9f9fd;
2022-05-03 21:34:11 +03:00
2022-03-27 14:42:19 +03:00
}
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;
}