CoolFace
Apppublic

duqing026/visual-lowcode-chinese

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
index.css54 linesDownload Raw Back to src
1@tailwind base;2@tailwind components;3@tailwind utilities;4 5:root {6  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;7  line-height: 1.5;8  font-weight: 400;9 10  color-scheme: light dark;11  color: rgba(255, 255, 255, 0.87);12  background-color: #242424;13 14  font-synthesis: none;15  text-rendering: optimizeLegibility;16  -webkit-font-smoothing: antialiased;17  -moz-osx-font-smoothing: grayscale;18}19 20a {21  font-weight: 500;22  color: #646cff;23  text-decoration: inherit;24}25a:hover {26  color: #535bf2;27}28 29body {30  margin: 0;31  display: flex;32  place-items: center;33  min-width: 320px;34  min-height: 100vh;35}36 37#root {38  width: 100%;39  height: 100%;40}41 42@media (prefers-color-scheme: light) {43  :root {44    color: #213547;45    background-color: #ffffff;46  }47  a:hover {48    color: #747bff;49  }50  button {51    background-color: #f9f9f9;52  }53}54