stories.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #zuck-modal{
  2. .item{
  3. .blur-bg{
  4. background-image: url(https://green.amic.ru/images/news/webp/508059_size1.webp);
  5. height: 100%;
  6. width: 100%;
  7. background-size: cover;
  8. background-repeat: no-repeat;
  9. filter: brightness(0.4) blur(10px);
  10. transform: scalex(-1);
  11. }
  12. .image-container{
  13. height: 75%;
  14. background-color: #000;
  15. border-radius: 30px;
  16. position: absolute;
  17. top: 0;
  18. bottom: 0;
  19. margin: auto;
  20. left: 0;
  21. right: 0;
  22. width: 50%;
  23. max-width: 35%;
  24. overflow: hidden;
  25. box-shadow: #000 0 0 10px;
  26. display: flex;
  27. align-items: center;
  28. img{
  29. width: 100%;
  30. }
  31. }
  32. .title{
  33. a{
  34. background: #000000ab;
  35. z-index: 9;
  36. position: absolute;
  37. width: 50%;
  38. left: 0;
  39. right: 0;
  40. margin: auto;
  41. color: #fff;
  42. padding: 30px;
  43. border-radius: 20px;
  44. box-shadow: black 0 0 4px;
  45. font-weight: bold;
  46. }
  47. }
  48. .comments{
  49. position: absolute;
  50. right: 0;
  51. background: #000000ab;
  52. z-index: 1;
  53. color: white;
  54. width: 300px;
  55. padding: 30px;
  56. font-size: 12px;
  57. .comment{
  58. margin-bottom: 15px;
  59. border-bottom: 1px solid white;
  60. .published_at{
  61. font-size: 10px;
  62. color: #a4a3a3;
  63. }
  64. }
  65. }
  66. @media(max-width: 1024px){
  67. .title{
  68. a{
  69. width: 80%;
  70. font-size: 20px;
  71. top: 20px;
  72. text-align: center;
  73. }
  74. }
  75. .image-container{
  76. width: 90%;
  77. max-width: 90%;
  78. }
  79. }
  80. }
  81. }