Advertisement
Eulis

accommodation-detail-rebase-css

Oct 2nd, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. .accommodation-detail{
  2. display: flex;
  3. width: 100%;
  4. font-family: 'Raleway', sans-serif;
  5. color: #1E1E1E;
  6. height: 100vh;
  7. margin-bottom: 2rem;
  8. }
  9. .accommodation-detail-informations{
  10. display: flex;
  11. width: 30%;
  12. box-shadow: 0px 0px 6px #dedede;
  13. padding: 60px;
  14. justify-content: space-between;
  15. }
  16. .accommodation-detail-container{
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: space-around;
  20.  
  21. }
  22. .accommodation-detail-title-box{
  23. display: flex;
  24. flex-direction: column;
  25. align-items: flex-start;
  26. }
  27. .accommodation-detail-title{
  28. font-family: 'Raleway', sans-serif;
  29. font-size: 1rem;
  30. font-weight: 500;
  31. letter-spacing: 8px;
  32. padding-bottom: 5px;
  33. }
  34. .accommodation-detail-subtitle{
  35. font-family: 'Raleway', sans-serif;
  36. font-size: 0.85rem;
  37. letter-spacing: 8px;
  38. }
  39. .accommodation-detail-description{
  40. font-size: 0.9rem;
  41. display: flex;
  42. justify-content: flex-start;
  43. text-align: left;
  44. width: 100%;
  45. }
  46. .accommodation-detail-offered-services{
  47. display: flex;
  48. flex-direction: column;
  49. margin-left: 20px;
  50. }
  51. .services-box{
  52. display: flex;
  53. justify-content: flex-start;
  54. margin-bottom: 6px;
  55. }
  56. .services-icon{
  57. display: flex;
  58. width: 15px;
  59. height: 15px;
  60. margin-right: 4px;
  61. }
  62. .see-more-informations{
  63. display: flex;
  64. flex-direction: column;
  65. align-items: flex-start;
  66. color: #1E1E1E;
  67. }
  68. .see-more-informations-underline{
  69. background-color: #1E1E1E;
  70. height: 2px;
  71. width: 80px;
  72. }
  73. .see-more-informations-text{
  74. font-size: 0.85rem;
  75. padding-bottom: 6px;
  76. }
  77. .service-description{
  78. font-size: 0.85rem;
  79. }
  80. .bannerRefactor{
  81. width: 70%;
  82. height: 100vh;
  83. }
  84. @media(max-width: 786px){
  85. .accommodation-detail{
  86. flex-direction: column;
  87. align-items: center;
  88. position: relative;
  89. justify-content: center;
  90. height: fit-content;
  91. }
  92. .accommodation-detail-informations{
  93. display: flex;
  94. order: 1;
  95. width: 100%;
  96. justify-content: center;
  97. min-height: 30vh;
  98. box-shadow: 0px 0px 0px 0px;
  99. }
  100. .accommodation-detail-offered-services{
  101. display: none;
  102. }
  103. .accommodation-detail-container{
  104. display: flex;
  105. align-items: center;
  106. width: 85%;
  107. justify-content: space-around;
  108. height: fit-content;
  109. min-height: 35vh;
  110. }
  111. .accommodation-detail-title{
  112. text-align: center;
  113. }
  114. .accommodation-detail-subtitle{
  115. text-align: center;
  116. }
  117. .accommodation-detail-description{
  118. justify-content: center;
  119. text-align: center;
  120. width: 100%;
  121. }
  122. .accommodation-detail-title-box{
  123. align-items: center;
  124. }
  125. .see-more-informations{
  126. align-items: center;
  127. }
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement