forked from XiaoMo/ChatGPT-Next-Web
43 lines
805 B
CSS
43 lines
805 B
CSS
:root {
|
|
/* color */
|
|
--white: white;
|
|
--gray: rgb(250, 250, 250);
|
|
--primary: rgb(29, 147, 171);
|
|
--second: rgb(231, 248, 255);
|
|
--hover-color: #f3f3f3;
|
|
|
|
/* shadow */
|
|
--shadow: 50px 50px 100px 10px rgb(0, 0, 0, 0.1);
|
|
--card-shadow: 0px 2px 4px 0px rgb(0, 0, 0, 0.05);
|
|
|
|
/* stroke */
|
|
--border-in-light: 1px solid rgb(222, 222, 222);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: var(--gray);
|
|
height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
user-select: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 20px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
border-radius: 20px;
|
|
border: 6px solid transparent;
|
|
background-clip: content-box;
|
|
}
|