Last active
December 15, 2024 19:17
-
-
Save b-coimbra/c69d5034641a732ae215b2968b68bc9a to your computer and use it in GitHub Desktop.
Theme for ttv/kappi_tan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); | |
span.username { | |
color: #ffffff !important; | |
background: linear-gradient(45deg, #5a6ae5, #ffc3e4); | |
padding: .6rem 1rem .4rem 1rem; | |
border-radius: 0 100px 100px 100px; | |
font-size: 10pt; | |
text-shadow: 0 1px 6px #00000052; | |
box-shadow: inset 0 0 0 2px #e6d0ff; | |
font-family: | |
'Nunito', sans-serif; | |
font-weight: bolder !important; | |
width: auto; | |
margin-right: 1rem; | |
white-space: nowrap; | |
} | |
.chat-line { | |
margin-bottom: 1rem; | |
padding-bottom: 1.5rem; | |
padding-top: 1rem; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
background: #ffffff2e; | |
padding: 1rem 1.5rem 1.2rem 1rem; | |
border-radius: 0 100px 100px 100px; | |
border: 2px dashed #ffffff75; | |
animation: slide-in cubic-bezier(0.65, 0.05, 0.36, 1) 1s; | |
width: auto; | |
} | |
@keyframes slide-in { | |
0% { | |
transform: translate(100%); | |
} | |
100% { | |
transform: translate(0%); | |
} | |
} | |
span.message { | |
color: #ffffff !important; | |
font-family: 'Nunito', sans-serif; | |
font-size: 11pt; | |
} | |
span.badges { | |
position: absolute; | |
margin: 0 0 -35px 5px; | |
background: #ffffff; | |
height: 20px; | |
display: flex; | |
align-items: center; | |
border-radius: 100px; | |
padding: 5px; | |
border: 1px solid white; | |
} | |
.colon { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment