Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. .App {
  2. text-align: center;
  3. }
  4.  
  5. .App-logo {
  6. animation: App-logo-spin infinite 20s linear;
  7. height: 40vmin;
  8. pointer-events: none;
  9. }
  10.  
  11. .App-header {
  12. background-color: #282c34;
  13. min-height: 100vh;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: center;
  18. font-size: calc(10px + 2vmin);
  19. color: white;
  20. }
  21.  
  22. .App-link {
  23. color: #61dafb;
  24. }
  25.  
  26. @keyframes App-logo-spin {
  27. from {
  28. transform: rotate(0deg);
  29. }
  30. to {
  31. transform: rotate(360deg);
  32. }
  33. }
  34.  
  35. .files-dropzone {
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. }
  40.  
  41. .files-drop {
  42. max-width: 20rem;
  43. padding: 1rem;
  44. background-color: rgba(232, 236, 241, 1);
  45. border-style: dashed;
  46. border-width: 2px;
  47. border-radius: 25px;
  48. }
  49.  
  50. .span-blue {
  51. color: rgba(34, 167, 240, 1);
  52. }
  53.  
  54. .original-image {
  55. height: 500px;
  56. background-color: rgba(232, 236, 241, 1);
  57. }
  58.  
  59. .original-image {
  60. .image-gallery-image {
  61. img {
  62. max-width: 100%;
  63. max-height: 100%;
  64. }
  65. }
  66. }
  67.  
  68. .image-gallery-slide {
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. }
  73.  
  74. .image-gallery-slide {
  75. img {
  76. width: inherit;
  77. height: 100%;
  78. }
  79. }
  80.  
  81. .image-gallery-description {
  82. bottom: 90% !important;
  83. left: 50% !important;
  84. transform: translateX(-50%);
  85. border-radius: 25px;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement