Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. .tag {
  2. float: left;
  3. text-align: center;
  4. height: 14px;
  5. width: 110px;
  6. background-color: #2e353d;
  7. color: #FFFFFF;
  8. padding-top: 2px;
  9. margin-top: 1px;
  10. font-size: 10px;
  11. }
  12. .arrow-right {
  13. width: 0;
  14. height: 0;
  15. float: left;
  16. margin-top: 1px;
  17. border-top: 8px solid transparent;
  18. border-bottom: 8px solid transparent;
  19. border-left: 8px solid #2e353d;
  20. }
  21.  
  22. .tag {
  23. float: left;
  24. position:relative;
  25. text-align: center;
  26. height: 14px;
  27. width: 110px;
  28. background-color: #2e353d;
  29. color: #FFFFFF;
  30. padding-top: 2px;
  31. margin-top: 1px;
  32. font-size: 10px;
  33. border: 1px solid #FF00FF;
  34. border-right: none;
  35. }
  36. .tag:after, .tag:before {
  37. content:'';
  38. margin-right:-10px;
  39. width: 0;
  40. height: 0;
  41. position:absolute;
  42. top:0px;
  43. left:100%;
  44. border-top: 9px solid transparent;
  45. border-bottom: 9px solid transparent;
  46. border-left: 8px solid #2e353d;
  47. }
  48. .tag:before {
  49. top:-1px;
  50. border-top: 10px solid transparent;
  51. border-bottom: 10px solid transparent;
  52. border-left: 9px solid #FF00FF;
  53. }
  54.  
  55. .arrow-border {
  56. width: 0;
  57. height: 0;
  58. float: left;
  59. margin-top: 1px;
  60. border-top: 9px solid transparent;
  61. border-bottom: 9px solid transparent;
  62. border-left: 9px solid #FF00FF;
  63. }
  64.  
  65. .arrow-right {
  66. width: 0;
  67. height: 0;
  68. float: left;
  69. margin-left: -9px; /* Width of .arrow-border's border */
  70. margin-top: 2px;
  71. border-top: 8px solid transparent; /* One less than .arrow-border's border width */
  72. border-bottom: 8px solid transparent;
  73. border-left: 8px solid #2e353d;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement