Advertisement
RyanJEarnshaw

Untitled

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