Advertisement
RyanJEarnshaw

Untitled

Oct 11th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. @import 'https://fonts.googleapis.com/css?family=Raleway:100,200,300,400';
  2. @import url(http://fonts.googleapis.com/css?family=Roboto);
  3.  
  4. * {
  5. margin:0;
  6. padding:0;
  7. }
  8.  
  9. html, body {
  10. font-family: 'Raleway', sans-serif;
  11. margin:0;
  12. padding:0;
  13. height:auto;
  14. background-color: rgba(255,255,255,1);
  15. }
  16.  
  17. .container {
  18. min-height:100%;
  19. position:relative;
  20. background-color: rgba(255,255,255,1);
  21. }
  22.  
  23.  
  24.  
  25.  
  26. .title {
  27. font-family: 'roboto', sans-serif;
  28. text-align: center;
  29. color: rgba(1,1,1,0.2);
  30. margin: 4% 0;
  31. font-size: 5vmax;
  32. }
  33. .greeting {
  34. font-family: 'roboto', sans-serif;
  35. text-align: center;
  36. color: rgba(1,1,1,0.6);
  37. margin: 4% 0;
  38. font-size: 2vmax;
  39. }
  40. .information {
  41. display: flex;
  42. float: middle;
  43. text-align: center;
  44. vertical-align: center;
  45. width: 100%;
  46. height: auto;
  47. justify-content: center;
  48. }
  49.  
  50.  
  51. .cubiccont {
  52. margin: 1% 1%;
  53. float: left;
  54. height: 15vmax;
  55. width: 15%;
  56. border: 3px dashed rgba(1,1,1,0.3);
  57. }
  58. .contfigure {
  59. width: 100%;
  60. height: 80%;
  61. }
  62. .conttext {
  63. width: 100%;
  64. height: 20%;
  65. background-color: rgba(1,1,1,)
  66. }
  67. .conttext h3 {
  68. font-family: 'roboto', sans-serif;
  69. text-align: middle;
  70. font-size: 1vmax;
  71. color: rgba(1,1,1,0.6);
  72. }
  73. .contfigure h2 {
  74. font-family: 'roboto', sans-serif;
  75. color: rgba(1,1,1,0.2);
  76. font-size: 10vmax;
  77. }
  78.  
  79. a {
  80. font-family: 'Roboto';
  81. text-decoration: none;
  82. margin: 1%;
  83. padding: 1%;
  84. width: 15%;
  85. cursor: pointer;
  86. background: white;
  87. text-decoration: none;
  88. color: SALMON;
  89. border: 3px solid SALMON;
  90.  
  91. }
  92. .content {
  93. text-align: center;
  94. }
  95. .button {
  96. display: inline-block;
  97. vertical-align: middle;
  98. -webkit-transform: translateZ(0);
  99. transform: translateZ(0);
  100. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  101. -webkit-backface-visibility: hidden;
  102. backface-visibility: hidden;
  103. -moz-osx-font-smoothing: grayscale;
  104. position: relative;
  105. -webkit-transition-property: color;
  106. transition-property: color;
  107. -webkit-transition-duration: 0.5s;
  108. transition-duration: 0.5s;
  109. }
  110. .button:before {
  111. content: "";
  112. position: absolute;
  113. z-index: -1;
  114. top: 0;
  115. left: 0;
  116. right: 0;
  117. bottom: 0;
  118. background: SALMON;
  119. -webkit-transform: scaleY(0);
  120. transform: scaleY(0);
  121. -webkit-transform-origin: 50% 0;
  122. transform-origin: 50% 0;
  123. -webkit-transition-property: transform;
  124. transition-property: transform;
  125. -webkit-transition-duration: 0.5s;
  126. transition-duration: 0.5s;
  127. -webkit-transition-timing-function: ease-out;
  128. transition-timing-function: ease-out;
  129. }
  130. .button:hover, .button:focus, .button:active {
  131. color: WHITE;
  132. }
  133. .button:hover:before, .button:focus:before, .button:active:before {
  134. -webkit-transform: scaleY(1);
  135. transform: scaleY(1);
  136. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  137. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement