Advertisement
RyanJEarnshaw

Untitled

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