Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. .gu-mirror {
  2. position: fixed !important;
  3. margin: 0 !important;
  4. z-index: 9999 !important;
  5. opacity: 0.8;
  6. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  7. filter: alpha(opacity=80);
  8. }
  9. .gu-hide {
  10. display: none !important;
  11. }
  12. .gu-unselectable {
  13. -webkit-user-select: none !important;
  14. -moz-user-select: none !important;
  15. -ms-user-select: none !important;
  16. user-select: none !important;
  17. }
  18. .gu-transit {
  19. opacity: 0.2;
  20. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  21. filter: alpha(opacity=20);
  22. }
  23.  
  24. .wrapper {
  25. display: flex;
  26. }
  27.  
  28. .container {
  29. background: white;
  30. padding: 5px;
  31. margin: 10px;
  32. }
  33.  
  34. .container>div {
  35. padding: 10px;
  36. border-left: 5px solid gray;
  37. margin: 5px;
  38. background: #fefefe;
  39. box-shadow: 0 2px 4px 0 hsla(0,0%,60%,.75);
  40. transition: height .4s,box-shadow 1s linear;
  41. border-radius: 3px;
  42. }
  43.  
  44. .container>div:active {
  45. cursor: move;
  46. }
  47.  
  48. .container.inProgress>div {
  49. border-color: #395a85 !important;
  50. }
  51.  
  52. .container.toDo>div {
  53. border-color: #9e2949 !important;
  54. }
  55.  
  56. .container.done>div {
  57. border-color: #11780d !important;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement