-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
20 lines (16 loc) · 731 Bytes
/
Copy pathinput.css
File metadata and controls
20 lines (16 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* NODE_ENV=production npx tailwindcss -i ./input.css -o ./assets/style.css --minify */
@tailwind base;
@tailwind components;
@tailwind utilities;
.peer:checked ~ .checkbox {
background-position: 50%;
background-repeat: no-repeat;
background-size: 100% 100%;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
}
.text-star-glow {
text-shadow: 0 0 200px #f008, 0 0 100px #f809, 0 0px 15px #fe0b;
}
.shadow-star-glow {
box-shadow: 0 0 5px #f008, 0 0 10px #f809, 0 0px 20px #fe0b;
}