limepot-xyz/public/css/classes.css

73 lines
1.4 KiB
CSS
Raw Normal View History

2024-07-03 23:32:50 -06:00
@import "nav-buttons.css";
@import "cards.css";
@import "instructions.class";
2024-06-17 15:56:06 -06:00
.title {
2024-07-04 07:12:56 -06:00
font-size: 42px;
2024-06-17 15:56:06 -06:00
background-image: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 400%;
background-position: 0%;
2024-06-25 15:19:47 -06:00
}
.text-gradient {
background-image: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 400%;
background-position: 0%;
}
2024-07-03 23:32:50 -06:00
.menu {
text-align: center;
2024-07-04 07:12:56 -06:00
}
.content {
2024-07-04 21:12:25 -06:00
width: 90%;
2024-07-04 07:12:56 -06:00
max-width: 75em;
margin: auto;
padding: 0.5em;
margin-top: 1em;
margin-bottom: 1em;
border: 3px solid #fab387;
border-radius: 5px;
opacity: 0.9;
2024-07-04 20:47:45 -06:00
background: rgba(0, 0, 0, .66);
-webkit-box-shadow: 0 0 20px #f5a97f;
-moz-box-shadow: 0 0 20px #f5a97f;
box-shadow: 0 0 20px #f5a97f;
2024-07-04 07:12:56 -06:00
}
.small-quote {
font-size: smaller;
color: #a6adc8;
2024-07-06 16:45:47 -06:00
}
.ntfy-send::before {
content: "[[";
}
.ntfy-send::after {
content: "]]";
}
.ntfy-box {
margin: 0 1ch;
padding: 1ch 2ch 2ch 2ch;
background: #ffffff13;
border-radius: 10px;
}
textarea {
width: 85%;
2024-07-06 16:45:47 -06:00
appearance: none;
outline: none;
font-family: inherit;
background: transparent;
color: inherit;
border-bottom: 1px solid currentColor;
-webkit-box-shadow: 0 0 20px #f5a97f;
-moz-box-shadow: 0 0 20px #f5a97f;
box-shadow: 0 0 20px #f5a97f;
2024-06-17 15:56:06 -06:00
}