Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. html, body {
  8. font-size: 18px;
  9. font-weight: bold;
  10. height: 100%;
  11. width: 100%;
  12. }
  13.  
  14.  
  15. #filterDiv {
  16.  
  17. height: 100%;
  18. width: 100%;
  19. overflow: hidden;
  20. }
  21.  
  22.  
  23.  
  24. .options-wrapper {
  25. display: flex;
  26. flex-wrap: wrap;
  27. width: 350px;
  28. flex-direction: column;
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. z-index: 50;
  33. }
  34.  
  35. #randomDiv {
  36. box-shadow: 0 0 1em black;
  37. width: 100%;
  38. height: 250px;
  39. }
  40.  
  41.  
  42. .options {
  43. box-shadow: 0 0 1em black;
  44. position: relative;
  45.  
  46. width: 100%;
  47. height: 150px;
  48. background: lightblue;
  49. }
  50.  
  51. button {
  52. display: block;
  53. border: 0px;
  54. background: darkslateblue;
  55. color: white;
  56. padding: 10px 5px;
  57. width: 100px;
  58. margin: 20px auto;
  59. border-radius: 3px;
  60. cursor: pointer;
  61. }
  62.  
  63. img {
  64. width: 100%;
  65. height: 100%;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement