Advertisement
RyanJEarnshaw

Untitled

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