PineGrow Website
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

84 lines
1.4KB

  1. .container {
  2. max-width: 1080px;
  3. }
  4. /* * Custom translucent site header */
  5. .site-header {
  6. background-color: rgba(0, 0, 0, .85);
  7. -webkit-backdrop-filter: saturate(180%) blur(20px);
  8. backdrop-filter: saturate(180%) blur(20px);
  9. }
  10. .site-header a {
  11. color: #999;
  12. transition: ease-in-out color .15s;
  13. }
  14. .site-header a:hover {
  15. color: #fff;
  16. text-decoration: none;
  17. }
  18. /* * Dummy devices (replace them with your own or something else entirely!) */
  19. .product-device {
  20. position: absolute;
  21. right: 10%;
  22. bottom: -30%;
  23. width: 300px;
  24. height: 540px;
  25. background-color: #333;
  26. border-radius: 21px;
  27. -webkit-transform: rotate(30deg);
  28. transform: rotate(30deg);
  29. }
  30. .product-device::before {
  31. position: absolute;
  32. top: 10%;
  33. right: 10px;
  34. bottom: 10%;
  35. left: 10px;
  36. content: "";
  37. background-color: rgba(255, 255, 255, .1);
  38. border-radius: 5px;
  39. }
  40. .product-device-2 {
  41. top: -25%;
  42. right: auto;
  43. bottom: 0;
  44. left: 5%;
  45. background-color: #e5e5e5;
  46. }
  47. /* * Extra utilities */
  48. .border-top {
  49. border-top: 1px solid #e5e5e5;
  50. }
  51. .border-bottom {
  52. border-bottom: 1px solid #e5e5e5;
  53. }
  54. .box-shadow {
  55. box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
  56. }
  57. .flex-equal > * {
  58. -ms-flex: 1;
  59. -webkit-box-flex: 1;
  60. flex: 1;
  61. }
  62. @media (min-width: 768px) {
  63. .flex-md-equal > * {
  64. -ms-flex: 1;
  65. -webkit-box-flex: 1;
  66. flex: 1;
  67. }
  68. }
  69. .overflow-hidden {
  70. overflow: hidden;
  71. }