Advertisement
RyanJEarnshaw

Untitled

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