Guest User

/r/Egoiste Arrows + Score

a guest
Mar 17th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.80 KB | None | 0 0
  1. .linklisting .thing .midcol {
  2.   border-bottom: solid 2px #00b3b2;
  3.   background-color: #00cccb;
  4.   border-bottom-left-radius: 5px;
  5.   border-top-left-radius: 5px;
  6.   width: 65px !important;
  7.   position: absolute;
  8.   height: 100%;
  9.   margin: 0;
  10.   left: 0;
  11.   top: 0;
  12. }
  13. .linklisting .thing .midcol .arrow {
  14.   border-right: solid 1px #00b3b2;
  15.   background-image: none;
  16.   position: absolute;
  17.   -webkit-transition: all 500ms ease 0s;
  18.   -moz-transition: all 500ms ease 0s;
  19.   -o-transition: all 500ms ease 0s;
  20.   transition: all 500ms ease 0s;
  21.   height: 50%;
  22.   width: 25px;
  23.   padding: 0;
  24.   margin: 0;
  25.   top: 0;
  26. }
  27. .linklisting .thing .midcol .arrow:before {
  28.   border: solid 3px #ffffff;
  29.   -webkit-transform: rotateZ(45deg);
  30.   -ms-transform: rotateZ(45deg);
  31.   transform: rotateZ(45deg);
  32.   position: absolute;
  33.   height: 8px;
  34.   content: '';
  35.   width: 8px;
  36.   top: 50%;
  37.   left: 0;
  38. }
  39. .linklisting .thing .midcol .arrow.up,
  40. .linklisting .thing .midcol .arrow.upmod {
  41.   border-bottom: solid 1px #00b3b2;
  42. }
  43. .linklisting .thing .midcol .arrow.up:before,
  44. .linklisting .thing .midcol .arrow.upmod:before {
  45.   margin: -4px 0 0 7px;
  46.   border-bottom: none;
  47.   border-right: none;
  48. }
  49. .linklisting .thing .midcol .arrow.down,
  50. .linklisting .thing .midcol .arrow.downmod {
  51.   top: 50%;
  52. }
  53. .linklisting .thing .midcol .arrow.down:before,
  54. .linklisting .thing .midcol .arrow.downmod:before {
  55.   margin: -8px 0 0 7px;
  56.   border-left: none;
  57.   border-top: none;
  58. }
  59. .linklisting .thing .midcol .arrow.upmod,
  60. .linklisting .thing .midcol .arrow.downmod {
  61.   background-color: #00b3b2;
  62. }
  63. .linklisting .thing .midcol .score {
  64.   font-weight: normal;
  65.   margin: -10px 0 0 0;
  66.   text-align: center;
  67.   position: absolute;
  68.   line-height: 20px;
  69.   font-size: 12px;
  70.   height: 20px;
  71.   color: #fff;
  72.   width: 40px;
  73.   left: 25px;
  74.   top: 50%;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment