Guest User

Untitled

a guest
Oct 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1.  
  2. /**
  3. * dolla dolla bill y'all
  4. */
  5.  
  6. body {
  7. width:400px;
  8. margin:100px auto 0;
  9. }
  10. div {
  11. position:relative;
  12. z-index:10;
  13. font-family:arial;
  14. text-align:center;
  15. background: #7db9e8;
  16. width: 53px;
  17. height: 14px;
  18. padding:6px 0;
  19. font-size:14px;
  20. color:white;
  21. line-height:100%;
  22. border-radius: 0 0 5px 5px;
  23. box-shadow: 2px 2px 1px 2px rgba(0, 0, 0, 0.05);
  24. font-weight:bold;
  25. border-top:1px solid #5EAAE5;
  26. border-bottom:1px solid #5EAAE5;
  27. text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  28. background: #7db9e8; /* Old browsers */
  29. background: -moz-linear-gradient(top, #7db9e8 0%, #3f9ce2 100%); /* FF3.6+ */
  30. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(100%,#3f9ce2)); /* Chrome,Safari4+ */
  31. background: -webkit-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* Chrome10+,Safari5.1+ */
  32. background: -o-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* Opera 11.10+ */
  33. background: -ms-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* IE10+ */
  34. background: linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* W3C */
  35. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#3f9ce2',GradientType=0 ); /* IE6-9 */
  36. }
  37.  
  38. div:before, div:after {
  39. content:'';
  40. background: #7db9e8;
  41. position:absolute;
  42. top:-3px;
  43. width: 10px;
  44. height: 100%;
  45. z-index:9;
  46. background: #7db9e8; /* Old browsers */
  47. background: -moz-linear-gradient(top, #7db9e8 0%, #3f9ce2 100%); /* FF3.6+ */
  48. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(100%,#3f9ce2)); /* Chrome,Safari4+ */
  49. background: -webkit-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* Chrome10+,Safari5.1+ */
  50. background: -o-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* Opera 11.10+ */
  51. background: -ms-linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* IE10+ */
  52. background: linear-gradient(top, #7db9e8 0%,#3f9ce2 100%); /* W3C */
  53. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#3f9ce2',GradientType=0 ); /* IE6-9 */
  54. }
  55.  
  56. div:before {
  57. box-shadow: 3px 2px 1px 1px rgba(0, 0, 0, 0.05);
  58. left:-10px;
  59. border-radius: 1px 5px 0 1px;
  60. border-left:1px solid #5EAAE5;
  61. }
  62.  
  63. div:after {
  64. box-shadow: -3px 2px 1px 1px rgba(0, 0, 0, 0.05);
  65. right:-10px;
  66. border-radius: 5px 1px 1px 0;
  67. border-right:1px solid #5EAAE5;
  68. }
  69.  
  70. div span {
  71. position:absolute;
  72. z-index:12;
  73. display:inline-block;
  74. top:0;
  75. right:-20px;
  76. width:16px;
  77. height:16px;
  78. border-radius:16px;
  79. border:1px solid #CC6B0A;
  80. line-height:16px;
  81. box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.1);
  82. text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
  83. background: #e8aa30; /* Old browsers */
  84. background: -moz-linear-gradient(top, #e8aa30 0%, #d37e2e 100%); /* FF3.6+ */
  85. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8aa30), color-stop(100%,#d37e2e)); /* Chrome,Safari4+ */
  86. background: -webkit-linear-gradient(top, #e8aa30 0%,#d37e2e 100%); /* Chrome10+,Safari5.1+ */
  87. background: -o-linear-gradient(top, #e8aa30 0%,#d37e2e 100%); /* Opera 11.10+ */
  88. background: -ms-linear-gradient(top, #e8aa30 0%,#d37e2e 100%); /* IE10+ */
  89. background: linear-gradient(top, #e8aa30 0%,#d37e2e 100%); /* W3C */
  90. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8aa30', endColorstr='#d37e2e',GradientType=0 ); /* IE6-9 */
  91.  
  92. }
Add Comment
Please, Sign In to add comment