firepup-site/public/styles/style.css
Firepup Sixfifty 4a8dfd11ce
#aabbcc -> #abc
2025-03-27 17:01:23 -05:00

121 lines
2 KiB
CSS

/* @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap'); */
@font-face {
font-family: 'Source Code Pro';
src: url('/fonts/SourceCodePro.ttf');
}
* {
color-scheme: light dark;
font-family: 'Source Code Pro', monospace !important;
color: #0F0;
}
html, body {
height: 100%;
width: 100%;
color: #0F0;
margin: 0;
padding: 0;
font-family: 'Source Code Pro', monospace !important;
}
html {
background-color: #000;
}
.warning {
color: #F00;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.block {
width: 100%;
}
footer {
margin-top: auto;
text-align: center;
}
a:has(button) {
box-shadow: none !important;
transform: none !important;
}
#replit-badge {
box-shadow: none;
transform: none;
outline: none;
background: #000;
}
.center {
display: block;
margin: 0 auto;
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
/*
.rainbow {
background: linear-gradient(90.02deg, #F00 0.02%, #E0F 27.09%, #0BF 51.04%, #0F1 76.56%, #F00 99.99%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
*/
.rainbow {
background: linear-gradient(to right, #F00 0%, #E0F 10%, #0BF 30%, #0F1 50%, #F00 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.color {
color: #0F0;
}
.force-color {
background: #0F0;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.no-special {
box-shadow: none !important;
border-radius: unset !important;
outline: none !important;
transition: none !important;
}
pre {
background: #111;
width: 100%;
max-width: 100%;
min-width: 100%;
}
code {
overflow-x: auto;
max-width: 100%;
display: block;
margin: 0ch 1ch;
}