showcase.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .showscale_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. }
  8. .header_block {
  9. width: 100%;
  10. height: 20vw;
  11. background-position: center;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: center;
  16. background: linear-gradient( rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85) ), url(../images/showcase.jpg);background-repeat: repeat; background-position: center;
  17. }
  18. .header_title {
  19. color: #ffffff;
  20. font-size: 7vw;
  21. }
  22. .header_title_2 {
  23. color: #ffffff;
  24. text-align: center;
  25. font-size: 1.5vw;
  26. width: 50vw;
  27. }
  28. .templates_block {
  29. width: 95%;
  30. margin-top: 5vw;
  31. }
  32. .templates_title, .links_title {
  33. display: flex;
  34. justify-content: center;
  35. font-size: 3.5vw;
  36. }
  37. .templates_list {
  38. height: 30vw;
  39. margin-top: 2vw;
  40. border: 0.2vw solid #694a2d;
  41. border-radius: 2vw;
  42. overflow-x: auto;
  43. overflow-y: hidden;
  44. display: flex;
  45. align-items: center;
  46. justify-content: flex-start;
  47. }
  48. .template {
  49. display: flex;
  50. justify-content: start;
  51. flex-direction: column;
  52. align-items: center;
  53. min-height: 28vw;
  54. min-width: 25vw;
  55. max-width: 25vw;
  56. background-color: #9E795A;
  57. margin: 1vw;
  58. border-radius: 2vw;
  59. }
  60. .template_title {
  61. margin-top: 1vw;
  62. max-width: 90%;
  63. text-align: center;
  64. color: #ffffff;
  65. font-size: 2vw;
  66. font-weight: 500;
  67. overflow-y: hidden;
  68. overflow-x: auto;
  69. white-space: nowrap
  70. }
  71. .template_title::-webkit-scrollbar {
  72. height: 0.8vw; /* ширина scrollbar */
  73. }
  74. .template_title::-webkit-scrollbar-thumb {
  75. background-color: #d49d51; /* цвет плашки */
  76. border-radius: 5vw; /* закругления плашки */
  77. border: 0.25vw solid #ffffff;
  78. }
  79. .description {
  80. background-color: #EDCBB0;
  81. max-width: 90;
  82. height: auto;
  83. height: 15vw;
  84. min-width: 85%;
  85. max-width: 85%;
  86. border-radius: 0.5vw;
  87. }
  88. .description_text {
  89. margin: 0.8vw;
  90. overflow-wrap: normal; /* не поддерживает IE, Firefox; является копией word-wrap */
  91. word-wrap: normal;
  92. word-break: normal; /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */
  93. line-break: auto; /* нет поддержки для русского языка */
  94. hyphens: manual;
  95. }
  96. .description {
  97. overflow-y: auto;
  98. }
  99. .description::-webkit-scrollbar {
  100. width: 0.8vw; /* ширина scrollbar */
  101. }
  102. .description::-webkit-scrollbar-thumb {
  103. background-color: #d49d51; /* цвет плашки */
  104. border-radius: 5vw; /* закругления плашки */
  105. border: 0.25vw solid #ffffff;
  106. }
  107. .open_button {
  108. margin-top: 1vw;
  109. background-color: #ffffff;
  110. color: #000000;
  111. width: 15vw;
  112. height: 4.5vw;
  113. vertical-align: middle;
  114. border-radius: 5vw;
  115. display: flex;
  116. align-items: center;
  117. justify-content: center;
  118. }
  119. .open_button:hover {
  120. text-decoration: none;
  121. color: #000000;
  122. }
  123. .open_button_text {
  124. font-size: 1.5vw;
  125. margin-top: 15px;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. }
  130. .open_button, .open_button_link {
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. width: 15vw;
  135. height: 4.5vw;
  136. color: #000000;
  137. }
  138. .open_button_link:hover {
  139. text-decoration: none;
  140. color: #000000;
  141. }
  142. .links_block {
  143. margin-top: 4vw;
  144. height: 17vw;
  145. display: flex;
  146. flex-direction: column;
  147. align-items: center;
  148. width: 100%;
  149. }
  150. .link_list {
  151. width: 95%;
  152. background-color: #EDCBB0;
  153. height: 16vw;
  154. border-radius: 1.5vw;
  155. display: flex;
  156. align-items: center;
  157. }
  158. .link_block {
  159. margin: 1vw;
  160. width: 15vw;
  161. height: 6vw;
  162. background-color: #9E795A;
  163. display: flex;
  164. flex-direction: row;
  165. align-items: center;
  166. justify-content: center;
  167. border-radius: 1vw;
  168. }
  169. .link {
  170. width: auto;
  171. min-width: 15vw;
  172. max-width: 20vw;
  173. height: 6vw;
  174. display: flex;
  175. flex-direction: row;
  176. align-items: center;
  177. justify-content: center;
  178. }
  179. .link:hover {
  180. text-decoration: none;
  181. color: #ffffff;
  182. }
  183. .link_text {
  184. height: 1.8vw;
  185. color: #ffffff;
  186. font-size: 2vw;
  187. }
  188. .add_button, .link_delete, .repeal_button, .submit_button {
  189. border-radius: 1vw !important;
  190. margin: 1vw;
  191. width: 8vw;
  192. height: 3vw;
  193. }
  194. .link_delete, .repeal_button {
  195. background-color: hsla(0, 100%, 62%, 0.785) !important;
  196. border-color: hsla(0, 100%, 62%, 0.785) !important;
  197. }
  198. .delete_text {
  199. font-size: 1.3vw;
  200. }
  201. .header_link {
  202. display: flex;
  203. flex-direction: column;
  204. align-items: center;
  205. }
  206. .form_link, .file_form {
  207. width: 90%;
  208. }
  209. .link_form {
  210. display: flex;
  211. align-items: center;
  212. flex-direction: row;
  213. justify-content: center;
  214. }
  215. .form_data {
  216. margin: 0.5vw;
  217. }