legendary-doc-site/apps/app/assets/css/app.css

38 lines
620 B
CSS
Raw Normal View History

2020-08-22 15:01:04 +00:00
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import "@fortawesome/fontawesome-free/css/all.css";
2020-09-23 20:21:43 +00:00
@import "blog";
@import "code";
body {
outline: 1px pink solid;
}
input[type="checkbox"]::after {
2021-07-20 22:42:40 +00:00
display: inline-flex;
justify-content: center;
width: 100%;
height: 100%;
2021-07-20 22:42:40 +00:00
color: currentColor;
align-items: center;
2021-07-20 22:42:40 +00:00
content: "";
}
input[type="checkbox"]:checked::after {
content: "✓";
}
2021-07-20 22:42:40 +00:00
.hidden-options-toggle:checked + .hidden {
display: block;
}
.password-revealer {
@apply absolute;
2021-07-20 22:42:40 +00:00
right: 0;
bottom: 0;
2021-07-20 22:42:40 +00:00
width: 45px;
height: 45px;
}