website/app/globals.css

27 lines
358 B
CSS
Raw Normal View History

2023-11-26 21:08:28 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-05-03 10:41:57 +07:00
@layer base {
html {
font-family: Cantarell, system-ui, sans-serif;
}
}
2023-12-03 23:02:09 +07:00
.wrapper {
border: 3px solid blue;
2023-11-26 21:08:28 +07:00
}
2023-12-03 23:02:09 +07:00
.container {
background-color: pink;
2023-11-26 21:08:28 +07:00
}
2023-12-03 23:02:09 +07:00
.barCompleted {
background-color: lightblue;
width: 80%;
2023-11-26 21:08:28 +07:00
}
2023-12-03 23:02:09 +07:00
.label {
font-size: 20px;
color: green;
}