2023-03-07 15:23:54 +00:00
|
|
|
:root {
|
2023-03-09 17:01:40 +00:00
|
|
|
/* color */
|
|
|
|
--white: white;
|
2023-03-11 17:14:07 +00:00
|
|
|
--black: --black;
|
2023-03-09 17:01:40 +00:00
|
|
|
--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);
|
2023-03-10 18:25:33 +00:00
|
|
|
--card-shadow: 0px 2px 4px 0px rgb(0, 0, 0, 0.05);
|
2023-03-09 17:01:40 +00:00
|
|
|
|
|
|
|
/* stroke */
|
2023-03-10 18:25:33 +00:00
|
|
|
--border-in-light: 1px solid rgb(222, 222, 222);
|
2023-03-07 15:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-03-09 17:01:40 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--gray);
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
user-select: none;
|
2023-03-07 15:23:54 +00:00
|
|
|
}
|
|
|
|
|
2023-03-09 17:01:40 +00:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 20px;
|
2023-03-07 15:23:54 +00:00
|
|
|
}
|
|
|
|
|
2023-03-09 17:01:40 +00:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background-color: transparent;
|
2023-03-07 15:23:54 +00:00
|
|
|
}
|
|
|
|
|
2023-03-09 17:01:40 +00:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
border-radius: 20px;
|
|
|
|
border: 6px solid transparent;
|
|
|
|
background-clip: content-box;
|
2023-03-10 18:25:33 +00:00
|
|
|
}
|
2023-03-11 17:14:07 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
border: var(--border-in-light);
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|