Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- overflow: hidden;
- margin: 5px;
- }
- #chat_box {
- background-color: transparent;
- font-family: 'Open Sans', sans-serif;
- font-size:16px;
- font-style: normal;
- font-variant: normal;
- font-weight: bold;
- position: absolute;
- overflow: hidden;
- color: white;
- border-radius: 4px;
- width: calc(100% - 10px);
- height: calc(100% - 10px);
- text-shadow:
- 3px 3px 0px #000, 3px 2px 0px #000, 3px 1px 0px #000, 3px 0px 0px #000, 3px -1px 0px #000, 3px -2px 0px #000, 3px -3px 0px #000,
- -3px 3px 0px #000, -3px 2px 0px #000, -3px 1px 0px #000, -3px 0px 0px #000, -3px -1px 0px #000, -3px -2px 0px #000, -3px -3px 0px #000,
- 3px 3px 0px #000, 2px 3px 0px #000, 1px 3px 0px #000, 0px 3px 0px #000, -1px 3px 0px #000, -2px 3px 0px #000, -3px 3px 0px #000,
- 3px -3px 0px #000, 2px -3px 0px #000, 1px -3px 0px #000, 0px -3px 0px #000, -1px -3px 0px #000, -2px -3px 0px #000, -3px -3px 0px #000 !important;
- }
- #chat_box.dark {
- background: rgba(0,0,0,0.3);
- color: #fff;
- }
- #chat_box.light {
- background: rgba(255,255,255,0.3);
- color: #000;
- }
- .nick {
- font-weight: bold;
- text-transform: capitalize;
- }
- .tag {
- display: in-line block;
- text-indent: 21px;
- background-position: 0 center;
- background-repeat: no-repeat;
- display: inline-block;
- vertical-align: bottom;
- height: 18px;
- min-width: 18px;
- width: expression(document.body.clientWidth < $width ? "18px":"auto");
- padding: 0;
- margin-right: 3px;
- margin-bottom: -1px;
- text-indent: -9999px;
- border-radius: 2px;
- -moz-border-radius: 2px;
- -webkit-border-radius: 2px;
- overflow: hidden;
- }
- .chat_line {
- margin-left: 3px;
- margin-right: 3px;
- padding-top: 2px;
- padding-bottom: 3px;
- line-height: 16px;
- }
- .chat_line .message {
- word-break: normal;
- word-wrap: break-word;
- }
- .emoticon {
- margin-bottom: -7px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement