-
-
Save tinolove81/eaeabb63975723fc6485c237167754c9 to your computer and use it in GitHub Desktop.
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
| ::-webkit-scrollbar { | |
| visibility: hidden; | |
| } | |
| #chat_box { | |
| padding: 0; | |
| color: white; | |
| background: transparent; | |
| font-size: 16px; | |
| font-weight: 300; | |
| font-family: 'Meiryo', 'Microsoft JhengHei'; | |
| } | |
| .chat_line { | |
| margin: 2px; | |
| padding: 0; | |
| width: 100%; | |
| line-height: 1rem; | |
| animation: slideInRight .6s cubic-bezier(.2, 1, .3, 1); | |
| } | |
| .chat_line .time_stamp { | |
| display: none; | |
| } | |
| .chat_line .nick { | |
| text-shadow: 0 -1px #000, | |
| 1px -1px #000, | |
| 1px 0 #000, | |
| 1px 1px #000, | |
| 0 1px #000, | |
| -1px 1px #000, | |
| -1px 0 #000, | |
| -1px -1px #000; | |
| } | |
| .chat_line .message { | |
| color: white; | |
| text-shadow: 0 -1px #000, | |
| 1px -1px #000, | |
| 1px 0 #000, | |
| 1px 1px #000, | |
| 0 1px #000, | |
| -1px 1px #000, | |
| -1px 0 #000, | |
| -1px -1px #000; | |
| } | |
| @keyframes slideInRight { | |
| 0% { | |
| -webkit-transform: translateX(100%); | |
| transform: translateX(100%); | |
| visibility: visible; | |
| } | |
| 100% { | |
| -webkit-transform: translateX(0); | |
| transform: translateX(0); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment