portal-app/src/index.css

20 lines
255 B
CSS
Raw Normal View History

2025-02-17 23:23:45 -05:00
@import 'tailwindcss';
2025-02-16 01:53:00 -05:00
2025-02-17 23:23:45 -05:00
:root {
background-color: rgb(84, 4, 131);
color:azure;
2025-02-16 01:53:00 -05:00
}
2025-02-17 23:23:45 -05:00
*,
*:after,
*:before {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
2025-02-16 01:53:00 -05:00
}
2025-02-17 23:23:45 -05:00
body{
font-size: 100%;
list-style-type: none;
}