Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* FORMAT NAMES IN ROOMS */
- #roomlogs tr td:nth-child(1) {
- text-align: right;
- }
- #roomlogs tr:nth-child(1) td {
- text-align: left;
- }
- #userlist * {
- font-style: normal;
- text-align: left;
- }
- span.tooltip.tooltipstered {
- font-style: italic;
- font-weight: 400;
- }
- td a span {
- font-style: italic;
- font-weight: 400;
- text-align: right ;
- text-shadow: 0px 0px .01px;
- }
- tr td * {
- text-align: justify;
- text-justify: inter-word;
- }
- tr td span {
- word-break: break-word;
- }
- /* FORMAT NAMES IN ROOMS - END */
- /* FORMAT NAMES IN PM */
- #pmslogs .altrowstable td:nth-child(1) *, #pmslogs .altrowstable td:nth-child(2) * {
- font-weight: 400;
- font-style: italic;
- text-shadow: 0px 0px .01px;
- }
- /* FORMAT NAMES IN PM - END */
- /* CAUSE TEXT TO FLASH */
- .rpcblink {
- -webkit-animation: colorflash 2s infinite;
- animation: colorflash 2s infinite;
- }
- @keyframes colorflash {
- 0% {
- -webkit-opacity: 1;
- -webkit-opacity: 1;
- opacity: 1;
- }
- 50% {
- -webkit-opacity: 0;
- -webkit-opacity: 0;
- opacity: 0;
- }
- 100% {
- -webkit-opacity: 1;
- -webkit-opacity: 1;
- opacity: 1;
- }
- }
- /* CAUSE TEXT TO FLASH - END */
- /* TEXT SHADOW */
- .rpcdouble{
- text-shadow: 1px 1px 2px gray;
- }
- /* STRIKETHROUGH */
- .rpcstrike{
- text-decoration: line-through;
- }
Advertisement
Add Comment
Please, Sign In to add comment