CoolFace
Apppublic

Omnibus/txt2link-static

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
style.css55 linesDownload Raw Back to root
1body {2	padding: 2rem;3	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;4}5 6h1 {7	margin-top: 0;8    color:white;9    background:blue;10    border-radius:10px;11    padding:5px;12    text-align:center;13    box-shadow: 1px 2px 4px 2px black;  14}15 16p {17	color: rgb(107, 114, 128);18	font-size: 15px;19	margin-bottom: 10px;20	margin-top: 5px;21}22 23.card {24    margin: 0 auto;25    padding: 16px;26    border: 3px solid lightgray;27    border-radius: 16px;28    background: cornflowerblue;29    font-size: x-small;30    overflow: hidden;31    text-overflow: ellipsis;32    word-wrap: break-word;33    display: flex;34    flex-direction: column;35    align-items: center;36    align-content: center;37    width: 500px;38    max-width: 100%;39}40}41 42.card p:last-child {43	margin-bottom: 0;44}45#link_class {46    padding: 5px;47    border-radius: 5px;48    background: aliceblue;49    width: 100%;50    margin: 2px;51    text-decoration: none;52    font-family: system-ui;53}54}55