achievements.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #gallery .achievement-entry {
  2. cursor: pointer;
  3. margin-top: 5px;
  4. margin-bottom: 5px;
  5. margin-left: 7px;
  6. margin-right: 7px;
  7. z-index: 1;
  8. background-size: cover;
  9. background-repeat: no-repeat;
  10. background-position: center;
  11. position: relative;
  12. overflow: hidden;
  13. transition: all 0.3s ease-out;
  14. }
  15. #gallery .achievement-entry:hover {
  16. cursor: pointer;
  17. z-index: 1;
  18. transform: scale(1.1);
  19. transition: all 0.3s ease-out;
  20. z-index: 20000;
  21. }
  22. #gallery .achievement-details {
  23. cursor: pointer;
  24. z-index: 1;
  25. opacity: 1 !important;
  26. transition: none !important;
  27. transform: none !important;
  28. }
  29. #gallery .img-type-1 {
  30. height: 300px;
  31. }
  32. #gallery .img-type-2 {
  33. height: 146px;
  34. margin-bottom: 8px;
  35. }
  36. #gallery i {
  37. color: #8392a5;
  38. background-color: rgba(0, 0, 0, 0.7);
  39. padding: 10px;
  40. font-size: 0rem;
  41. opacity: 0;
  42. }
  43. #gallery .achievement-entry:hover i {
  44. opacity: 1;
  45. font-size: 1rem;
  46. transition: all 0.3s ease-out;
  47. --webkit-transition: all 0.3s ease-out;
  48. }
  49. #gallery .img-type-1 i {
  50. margin-top: 135px;
  51. }
  52. #gallery .img-type-2 i {
  53. margin-top: 50px;
  54. }
  55. #gallery .achievement-details.img-type-1 i,
  56. .achievement-details.img-type-2 i {
  57. margin-top: 0px !important;
  58. transition: none !important;
  59. float: right;
  60. }
  61. #gallery .achievement-entry .title {
  62. color: #e5e9f2;
  63. background-color: rgba(0, 0, 0, 0.7);
  64. opacity: 0;
  65. padding: 5px;
  66. position: absolute;
  67. bottom: 0px;
  68. width: 100%;
  69. margin-bottom: 0px;
  70. bottom: -5px;
  71. }
  72. #gallery .achievement-entry:hover .title {
  73. opacity: 1;
  74. bottom: 0px;
  75. transition: bottom 0.3s ease-out;
  76. }
  77. #gallery .caption {
  78. background-color: rgba(0, 0, 0, 0.7);
  79. bottom: 1rem;
  80. left: 1rem;
  81. color: #e5e9f2;
  82. padding: 15px;
  83. position: absolute;
  84. transition: all 0.3s ease-out;
  85. }
  86. #gallery .caption h4 {
  87. color: #e5e9f2;
  88. }
  89. #gallery .caption p {
  90. font-size: 16px;
  91. font-weight: 300;
  92. color: #e5e9f2;
  93. }
  94. .hidden {
  95. display: none !important;
  96. }
  97. #gallery .achievement-details {
  98. height: 75vh !important;
  99. }