Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. @font-face {
  2. font-family: 'Oswald', sans-serif;
  3. font-style: bold;
  4. font-weight: 700;
  5. src: url(http://fonts.googleapis.com/css?family=Oswald:700)
  6.  
  7. }
  8.  
  9. @-webkit-keyframes pulse {
  10. 0% {
  11. -webkit-transform: scale3d(1, 1, 1);
  12. transform: scale3d(1, 1, 1);
  13. }
  14.  
  15. 50% {
  16. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  17. transform: scale3d(1.05, 1.05, 1.05);
  18. }
  19.  
  20. 100% {
  21. -webkit-transform: scale3d(1, 1, 1);
  22. transform: scale3d(1, 1, 1);
  23. }
  24. }
  25.  
  26. body {
  27. font-family: 'Oswald', sans-serif;
  28. color: transparent;
  29. margin: 0px auto;
  30. }
  31. .chat_line {
  32. -webkit-animation-name: pulse;
  33. -webkit-animation-duration: .5s;
  34. -webkit-animation-iteration-count: 1;
  35. font-size: 18px;
  36. line-height: 18px;
  37.  
  38. }
  39. .chat_line .nick {
  40. font-weight: bold;
  41. text-transform: capitalize;
  42. color: #000;
  43. }
  44. .chat_line .message {
  45. color: #fff;
  46. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  47. }
  48. #chat_box {
  49. font-family: 'Oswald', sans-serif;
  50. font-size: 18px;
  51. font-style: normal;
  52. font-variant: normal;
  53. font-weight: normal;
  54. line-height: 18px;
  55. position: absolute;
  56. overflow: hidden;
  57. color:#030303;
  58. border-radius: 4px;
  59. width: calc(100% - 10px);
  60. height: calc(100% - 10px);
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement