20 lines
428 B
CSS
20 lines
428 B
CSS
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
@import url("https://fonts.googleapis.com/css2?family=Jolly+Lodger&family=Kumar+One&family=Modak&family=Rubik+Distressed&display=swap");
|
|
|
|
html,
|
|
body {
|
|
background-color: #1a1a1a !important;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.rotate-0 {
|
|
transform: rotate(0deg);
|
|
}
|
|
.rotate-90 {
|
|
transform: rotate(90deg);
|
|
}
|