achievements.css 2.0 KB

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