widget.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .widget .client-container {
  2. background: #6B5B95;
  3. color: #fff;
  4. height: 100%;
  5. }
  6. .widget .client-container hr {
  7. color: rgba(225,225,225,1);
  8. }
  9. .widget .client-container h2 {
  10. font-weight: 200;
  11. color: #fff;
  12. font-size: 1.5rem;
  13. padding:0;
  14. }
  15. .widget .client-container .last-clients {
  16. overflow-x: auto;
  17. overflow-y: hidden;
  18. background: #6b5b95;
  19. }
  20. .widget .client-container > h5 {
  21. text-transform: uppercase;
  22. font-size: 14px;
  23. color: rgba(255,255,255,0.5);
  24. }
  25. .widget .client-container .last-clients a {
  26. text-decoration: none;
  27. color: #fff;
  28. transition: all 0.1s ease-in-out;
  29. }
  30. .widget .client-container .last-clients a:hover {
  31. text-shadow: 0px 0px 3px #ffffff;
  32. text-decoration: none;
  33. color: #fff;
  34. }
  35. .widget .client-container .clients {
  36. }
  37. .widget .client-container .last-clients::-webkit-scrollbar {
  38. width: 6px;
  39. height: 6px;
  40. }
  41. .widget .client-container .last-clients::-webkit-scrollbar-button {
  42. width: 0px;
  43. height: 0px;
  44. }
  45. .widget .client-container .last-clients::-webkit-scrollbar-thumb {
  46. background: #cecece;
  47. border: 0px none #ffffff;
  48. border-radius: 50px;
  49. }
  50. .widget .client-container .last-clients::-webkit-scrollbar-thumb:hover {
  51. background: #707070;
  52. }
  53. .widget .client-container .last-clients::-webkit-scrollbar-thumb:active {
  54. background: #949494;
  55. }
  56. .widget .client-container .last-clients::-webkit-scrollbar-track {
  57. background: #ffffff;
  58. border: 0px none #ffffff;
  59. border-radius: 50px;
  60. }
  61. .widget .client-container .last-clients::-webkit-scrollbar-track:hover {
  62. background: #d4d4d4;
  63. }
  64. .widget .client-container .last-clients::-webkit-scrollbar-track:active {
  65. background: #d3d3d3;
  66. }
  67. .widget .client-container .last-clients::-webkit-scrollbar-corner {
  68. background: transparent;
  69. }
  70. .widget .client-container .clients li {
  71. display: inline-block;
  72. vertical-align: top;
  73. width: 50px;
  74. height: 50px;
  75. font-size: 11px;
  76. margin: 5px 10px;
  77. transition: all 0.1s ease-in-out;
  78. }
  79. .widget .client-container .last-clients li span {
  80. overflow:hidden;
  81. text-overflow: ellipsis;
  82. height: 30px;
  83. }
  84. .widget .client-container .last-clients li > a {
  85. position: relative;
  86. display: block;
  87. height: 100%;
  88. width: 100%;
  89. }
  90. .widget .client-container .last-clients li > a > div {
  91. position: absolute;
  92. top: 50%;
  93. left: 50%;
  94. width: 100%;
  95. transform: translateY(-50%) translateX(-50%);
  96. }
  97. .widget .client-container .last-clients li:hover {
  98. transform: scale(1.1, 1.1);
  99. }
  100. .client-container .client-search{
  101. position: relative;
  102. }
  103. .client-container .client-search input{
  104. background: rgba(0,0,0,0.2);
  105. padding:2px 10px 2px 10px;
  106. color:#ffffff;
  107. border:0;
  108. }