Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. @import "compass/css3";
  2.  
  3. /* Component styles */
  4. @import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
  5.  
  6. *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
  7. .clearfix:before, .clearfix:after {display: table; content: ''; }
  8. .clearfix:after { clear: both; }
  9.  
  10. body {
  11. cursor : pointer;
  12. color: #F26530;
  13. font-weight: 500;
  14. font-size: 1em;
  15. font-family: 'Roboto', sans-serif;
  16.  
  17. width: 50%;
  18. height: 50%;
  19. overflow: hidden;
  20. }
  21.  
  22. h1 {
  23. margin: 0;
  24. font-weight: 800;
  25. letter-spacing: 1px;
  26. font-size: 1em;
  27. line-height: 3em;
  28. text-align: center;
  29. }
  30.  
  31. canvas{
  32. background: orange;
  33. width: 100%;
  34. height: 100%;
  35. z-index: -1;
  36. position: absolute;
  37.  
  38. }
  39.  
  40. #main-footer{
  41. position: absolute;
  42. bottom: 10px;
  43. width: 100%;
  44. text-align: center;
  45. display: none;
  46. }
  47.  
  48. .footer-wrapper{
  49. display: inline-block;
  50. perspective: relative;
  51. margin: auto 0;
  52. margin-left: -8px;
  53.  
  54. -webkit-transform: translateY(15px) scale(0.8);
  55. -moz-transform: translateY(15px) scale(0.8);
  56. -ms-transform: translateY(15px) scale(0.8);
  57. -o-transform: translateY(15px) scale(0.8);
  58. transform: translateY(15px) scale(0.8);
  59. }
  60.  
  61. #follow-text{
  62. display: inline-block;
  63. height: 30px;
  64. -webkit-transform: translateY(5px);
  65. -moz-transform: translateY(5px);
  66. -ms-transform: translateY(5px);
  67. -o-transform: translateY(5px);
  68. transform: translateY(5px);
  69. }
  70.  
  71. #footer-container {
  72. background: black;
  73. display: block;
  74. width: 120px;
  75. height: 30px;
  76. margin: 0px auto;
  77. text-align: center;
  78. position: relative;
  79. -webkit-animation-direction: alternate;
  80. -moz-animation-direction: alternate;
  81. animation-direction: alternate;
  82. -webkit-backface-visibility: visible;
  83. backface-visibility: visible;
  84. -webkit-transform-style: preserve-3d;
  85. -moz-transform-style: preserve-3d;
  86. -ms-transform-style: preserve-3d;
  87. -o-transform-style: preserve-3d;
  88. transform-style: preserve-3d;
  89. -webkit-transform-origin: 50% 50%;
  90. -moz-transform-origin: 50% 50%;
  91. -ms-transform-origin: 50% 50%;
  92. -o-transform-origin: 50% 50%;
  93. transform-origin: 50% 50%;
  94. -webkit-transform: rotateX(0deg) translateZ(15px);
  95. -moz-transform: rotateX(0deg) translateZ(15px);
  96. -ms-transform: rotateX(0deg) translateZ(15px);
  97. -o-transform: rotateX(0deg) translateZ(15px);
  98. transform: rotateX(0deg);
  99. /* -webkit-transition: all 0.4s cubic-bezier(0.29, 1.53, 0.33, 1.01); */
  100. /* -moz-transition: all 0.4s cubic-bezier(0.29, 1.53, 0.33, 1.01); */
  101. /* transition: all 0.4s cubic-bezier(0.29, 1.53, 0.33, 1.01); */
  102. }
  103.  
  104. #box_front, #box_top, #box_bottom {
  105. font-size: 18px;
  106. display: block;
  107. width: 100%;
  108. height: 100%;
  109. position: absolute;
  110. padding-top: 3px;
  111. top: 0;
  112. color: #597;
  113.  
  114. border: groove 1px white;
  115. }
  116.  
  117.  
  118.  
  119. #footer-container a:hover {
  120. color: orange;
  121. }
  122.  
  123. #box_front {
  124.  
  125. }
  126.  
  127. #box_bottom {
  128. transform: translate3D(0, 15px, -15px) rotateX(-90deg);
  129. }
  130.  
  131. #box_top {
  132. /* height: 30px; */
  133. /* z-index: 100; */
  134. /* background-color: #C4C7ff; */
  135. transform: translate3D(0, -15px, -15px) rotateX(90deg);
  136. }
  137.  
  138. a {
  139. outline: none;
  140. color: #FF6464;
  141. text-decoration: none;
  142. }
  143.  
  144. a:hover, a:focus {
  145. color: #FF6464;
  146. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement