CoolFace
Apppublic

tledeum/medieval-queue-master

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css42 linesDownload Raw Back to root
1 2body {3    background-image: url('http://static.photos/medieval/1200x630/42');4background-size: cover;5    background-position: center;6    background-attachment: fixed;7}8body::before {9    content: "";10    position: fixed;11    top: 0;12    left: 0;13    right: 0;14    bottom: 0;15    background-color: rgba(26, 18, 11, 0.85);16    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e5b80b' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");17    z-index: -1;18}19@keyframes flicker {20    0%, 100% { opacity: 0.9; }21    50% { opacity: 0.7; }22}23 24img {25    animation: flicker 1.5s infinite alternate;26    filter: sepia(0.3) contrast(1.1) brightness(0.9);27}28 29.font-medieval {30    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);31    letter-spacing: 0.05em;32}33 34.border-double {35    border-style: double;36    border-width: 6px;37}38 39.border-dashed {40    border-style: dashed;41}42