styles.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. $font-family-sans-serif: "Source Sans Pro";
  2. $border-radius-lg: 0;
  3. $btn-border-width: 3px;
  4. @import "node_modules/bootstrap/scss/bootstrap";
  5. h1 {
  6. font-size: 10vw;
  7. font-weight: 200;
  8. margin: 0;
  9. }
  10. body {
  11. overflow-x: hidden;
  12. }
  13. .subtitle {
  14. font-style: italic;
  15. color: #999;
  16. font-size: 5vw;
  17. font-weight: 300;
  18. }
  19. .background-stripe {
  20. width: 100vw;
  21. background-image: url('./background.jpeg');
  22. background-size: cover;
  23. height: 30vw;
  24. margin: 200px 0 150px;
  25. min-height: 1000px;
  26. position: relative;
  27. .overlay {
  28. position: absolute;
  29. width: 100vw;
  30. width: 1px;
  31. height: 1px;
  32. &.overlay1 {
  33. top: -1px;
  34. left: 0;
  35. border-top: 10vw solid white;
  36. border-right: 100vw solid transparent;
  37. }
  38. &.overlay2 {
  39. bottom: -1px;
  40. right: 0;
  41. border-bottom: 10vw solid white;
  42. border-left: 100vw solid transparent;
  43. }
  44. }
  45. .terminal {
  46. position: absolute;
  47. left: 50%;
  48. top: 5vw;
  49. width: 1304px;
  50. margin-left: -652px;
  51. height: 972px;
  52. border-radius: 9px;
  53. box-shadow: 0 0 100px black;
  54. background: url('./terminal.png');
  55. background-size: cover;
  56. animation: slideIn ease-out 1s;
  57. opacity: .95;
  58. }
  59. @media(max-width: 1500px) {
  60. min-height: 500px;
  61. margin: 200px 0 100px;
  62. .terminal {
  63. width: 652px;
  64. top: -100px;
  65. margin-left: -326px;
  66. height: 486px;
  67. border-radius: 5px;
  68. }
  69. }
  70. @media(max-width: 750px) {
  71. min-height: 250px;
  72. margin: 100px 0 50px;
  73. .terminal {
  74. width: 326px;
  75. top: -50px;
  76. margin-left: -163px;
  77. height: 243px;
  78. border-radius: 3px;
  79. }
  80. }
  81. }
  82. .feature {
  83. font-size: 45px;
  84. line-height: 40px;
  85. opacity: .5;
  86. font-style: italic;
  87. }
  88. @keyframes slideIn {
  89. from {
  90. opacity: 0;
  91. margin-top: 200px;
  92. }
  93. to {
  94. opacity: .95;
  95. margin-top: 0px;
  96. }
  97. }
  98. .background-stripe2 {
  99. width: 100vw;
  100. background-image: url('./background.jpeg');
  101. background-size: cover;
  102. height: 30vw;
  103. margin: 100px 0 0;
  104. position: relative;
  105. .overlay {
  106. position: absolute;
  107. width: 100vw;
  108. width: 1px;
  109. height: 1px;
  110. &.overlay1 {
  111. top: -1px;
  112. right: 0;
  113. border-top: 10vw solid white;
  114. border-left: 100vw solid transparent;
  115. }
  116. }
  117. }