Guest User

Untitled

a guest
Aug 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. <div id="btiles" style="opacity: 1;"> <!—tiles container -->
  2. <!—tile 1-->
  3. <a class="bv-tile" href="https://www.my.blog /link-1" title="Filed-1">
  4. <!—title 1-->
  5. <div class="bv-title" >Filed-1</div>
  6. <!—image 1-->
  7. <div class="bv-thumb"><img title=" Filed-1-img" src="https://www. my.blog /wp-content/uploads/field-1.png"></div>
  8. </a>
  9. <!—tile 2-->
  10. <a class="bv-tile" href=" https://www.my.blog /link-2 /" title=" Filed-2 ">
  11. <div class="bv-title"> Filed-2 </div>
  12. <div class="bv-thumb"><img title=" Filed-2-img" src=" https://www. my.blog /wp-content/uploads/field-2.png "></div>
  13. </a>
  14. <!—tile 3-->
  15. <!—tile 4-->
  16. <!—tile 5-->
  17. <!—tile 6-->
  18. </div> <!—end of btiles -->
  19.  
  20. #btiles {
  21. margin: 5px 1px;
  22. padding: 2px;
  23. }
  24.  
  25. #btiles a{
  26. margin: 10px auto;
  27. padding 0;
  28. display: inline-block;
  29. text-decoration: none;
  30. width: 32%; /* 3 tiles in one row and some space around */
  31. max-width: 200px; /* photos are 250px x 250px */
  32. }
  33. @media (max-width: 480px) {
  34. #btiles a {width: 50%; min-width: 150px; } /* 2 tiles in one row and some space around - photos are 250px x 250px */
  35. }
  36. #btiles img {
  37. margin:0;
  38. padding:0;
  39. max-width: 100%;
  40. height: auto;
  41. }
  42.  
  43. .bv-tile, .bv-empty-tile {
  44. box-sizing: border-box;
  45. background: transparent;
  46. border: 1px solid #e1e8ed;
  47. border-radius: 6px;
  48. z-index:10;
  49. width: 100%;
  50. text-align:center;
  51. vertical-align: center;
  52. }
  53. .bv-title {
  54. background: grey;
  55. height: 30px;
  56. overflow: elipis;
  57. margin: 0;
  58. padding: 5px auto;
  59. width: 100%;
  60. vertical-align: center;
  61. color: #002268;
  62. font-family: Open Sans Condensed;
  63. font-size: 16px;
  64. font-style: normal;
  65. font-weight: 700;
  66. letter-spacing: 2px;
  67. font-variant: small-caps;
  68. }
  69. .bv-thumb {
  70. background: white;
  71. margin: 0;
  72. border-radius: 0 0 6px 6px;
  73. cursor: pointer;
  74. display: block;
  75. overflow: hidden;
  76. width: 100%;
  77. height: auto;
  78. }
  79. #btiles img {
  80. filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='old-timey'><feColorMatrix type='matrix' values='0.14 0.45 0.05 0 0 0.12 0.39 0.04 0 0 0.08 0.28 0.03 0 0 0 0 0 1 0'/></filter></svg>#old-timey");
  81. -webkit-filter: grayscale(1);
  82. -webkit-filter: grayscale(100%);
  83. -moz-filter: grayscale(100%);
  84. -ms-filter: grayscale(100%);
  85. -o-filter: grayscale(100%);
  86. filter: grayscale(100%);
  87. }
  88. #btiles img:hover {
  89. filter: none;
  90. -webkit-filter: grayscale(0);
  91. -moz-filter: grayscale(0);
  92. -ms-filter: grayscale(0);
  93. -o-filter: grayscale(0);
  94. filter: grayscale(0);
  95. }
Add Comment
Please, Sign In to add comment