Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. body {
  2. font-family: Arial;
  3. }
  4.  
  5. body .spawner {
  6. display: grid;
  7. grid-template-rows: 5% 5% auto;
  8. background: rgba(0, 0, 0, 0.45);
  9. color: white;
  10. position: absolute;
  11. right: 0;
  12. left: 0;
  13. top: 0;
  14. bottom: 0;
  15. margin: auto;
  16. height: 60vh;
  17. width: 60vw;
  18. text-align: center;
  19. }
  20.  
  21. .header {
  22. background: black;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27.  
  28. .searchbar {
  29. width: 60%;
  30. }
  31.  
  32. .content {
  33. display: grid;
  34. grid-template-columns: 20% 20% 20% 20% 20%;
  35. grid-auto-rows: 35%;
  36. overflow-y: auto;
  37. }
  38.  
  39. .item {
  40. background: rgba(0, 0, 0, 0.50);
  41. margin: 15px;
  42. height: 9rem;
  43. justify-self: stretch;
  44. align-self: center;
  45. }
  46.  
  47. .item img{
  48. margin-top: 1rem;
  49. width: 80%;
  50. height: 80%;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement