achievements.css 1.9 KB

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