Advertisement
RyanJEarnshaw

Untitled

Oct 10th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Poiret+One');
  2.  
  3. #tasks {
  4. display: table;
  5. margin: 0 auto;
  6. margin-top: 5%;
  7. margin-bottom: 155%;
  8. height: auto;
  9. }
  10. #task {
  11. display: inline-block;
  12. padding: 0;
  13. width: 30%;
  14. height: 70%;
  15. -webkit-box-shadow: 14px 19px 29px -2px rgba(0,0,0,0.15), -14px -19px 29px -2px rgba(0,0,0,0.25);
  16. -moz-box-shadow: 14px 19px 29px -2px rgba(0,0,0,0.15), -14px -19px 29px -2px rgba(0,0,0,0.25);
  17. box-shadow: 14px 19px 29px -2px rgba(0,0,0,0.15), -14px -19px 29px -2px rgba(0,0,0,0.25);
  18. margin-right: 2%;
  19. margin-bottom: 5%;
  20. min-height: 25%;
  21. float: middle;
  22. vertical-align: middle;
  23. transition: 1s;
  24. }
  25. #task:hover {
  26. -webkit-box-shadow: 13px 12px 33px -2px rgba(0,0,0,0.80);
  27. -moz-box-shadow: 13px 12px 33px -2px rgba(0,0,0,0.80);
  28. box-shadow: 13px 12px 33px -2px rgba(0,0,0,0.80);
  29. }
  30. #tasktitle {
  31. color: white;
  32. font-family: 'Lobster Two', sans-serif;
  33. }
  34.  
  35. #uline {
  36. background: #bdbdbd no-repeat scroll center;
  37. margin: auto;
  38. width:80%;
  39. height:2px;
  40. margin-top: 2%;
  41. margin-bottom: 4%;
  42. }
  43. #uline hr {
  44. display: none;
  45. }
  46.  
  47. #taskdescription {
  48. color: #8dbe41;
  49. width: 90%;
  50. float: middle;
  51. margin: 0 auto;
  52. font-size: 18px;
  53. font-family: 'Poiret One', sans-serif;
  54. }
  55. #taskbutton {
  56. font-family: 'Lobster Two';
  57. transition:0.2s ease;
  58. margin: 0 auto;
  59. margin-top: 3%;
  60. margin-bottom: 5%;
  61. }
  62. #taskbutton a {
  63. text-decoration: none;
  64. color: white;
  65. background-color: orange;
  66. padding: 0 20px;
  67. transition:0.2s ease;
  68. margin-top: 3%;
  69. margin-bottom: 5%;
  70. font-family: 'Lobster Two';
  71. transition:0.2s ease;
  72. }
  73.  
  74. #taskbutton a:hover {
  75. font-size: 30px;
  76. -webkit-box-shadow: 8px 8px 15px 1px rgba(0,0,0,0.20);
  77. -moz-box-shadow: 8px 8px 15px 1px rgba(0,0,0,0.20);
  78. box-shadow: 8px 8px 15px 1px rgba(0,0,0,0.20);
  79. padding: 0 48px;
  80. }
  81.  
  82. #taskimage img{
  83. width: 90%;
  84. background-color: white;
  85. padding: 8px;
  86. margin-top: 10px;
  87. }
  88.  
  89. #task1, #task2 {
  90. height: 100%;
  91. border: 2px dotted white;
  92. }
  93. #flip-container {
  94. perspective: 1000px;
  95. width: 100%;
  96. height: 100%;
  97. }
  98. #flip-container:hover #flipper, #flip-container.hover #flipper {
  99. transform: rotateY(180deg);
  100. border: 0px none;
  101. }
  102. #flip-container, #front, #back {
  103. width: 100%;
  104. height: 100%;
  105. }
  106. #flipper {
  107. transition: 0.6s;
  108. transform-style: preserve-3d;
  109. width: 100%;
  110. height: 100%;
  111. position: relative;
  112. }
  113. #front, #back {
  114. backface-visibility: hidden;
  115. position: absolute;
  116. top: 0;
  117. left: 0;
  118. }
  119. #front {
  120. z-index: 2;
  121. transform: rotateY(0deg);
  122. }
  123. #back {
  124. transform: rotateY(180deg);
  125. }
  126.  
  127.  
  128. #front, #back {
  129. height: inherit;
  130. display: flex;
  131. justify-content: center;
  132. }
  133. #comingsoonimage, #comingsoonimage2 {
  134. align-self: center;
  135. }
  136. #comingsoonimage img {
  137. display: inline-block;
  138. width: 90%;
  139. }
  140. #comingsoonimage2 img {
  141. display: inline-block;
  142. width: 100%;;
  143. height: 100%;
  144. }
  145. #comingsoonimage2 {
  146. display: inline-block;
  147. width: 100%;;
  148. height: 100%;
  149. }
  150. #comingsoontext {
  151. font-size: 40px;
  152. align-self: center;
  153. margin: auto;
  154. display: inline-block;
  155. width: 90%;
  156. height: 20%;
  157. }
  158. h4, h5 {
  159. height: 50%;
  160. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement