Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 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. .CreateBook {
  36. background-color: #2c3e50;
  37. min-height: 100vh;
  38. color: white;
  39. }
  40.  
  41. .ShowBookDetails {
  42. background-color: #2c3e50;
  43. min-height: 100vh;
  44. color: white;
  45. }
  46.  
  47. .UpdateBookInfo {
  48. background-color: #2c3e50;
  49. min-height: 100vh;
  50. color: white;
  51. }
  52.  
  53. .ShowBookList {
  54. background-color: #2c3e50;
  55. height: 100%;
  56. width: 100%;
  57. min-height: 100vh;
  58. min-width: 100px;
  59. color: white;
  60. }
  61.  
  62.  
  63. /* BookList Styles */
  64. .list {
  65. display: grid;
  66. margin: 20px 0 50px 0;
  67. grid-template-columns: repeat(4, 1fr);
  68. grid-auto-rows: 1fr;
  69. grid-gap: 2em;
  70. }
  71.  
  72. .card-container {
  73. width: 250px;
  74. border: 1px solid rgba(0,0,.125);
  75. margin: 0 auto;
  76. border-radius: 5px;
  77. overflow: hidden;
  78. }
  79.  
  80. .desc {
  81. height: 130px;
  82. padding: 10px;
  83. }
  84.  
  85. .desc h2 {
  86. font-size: 1em;
  87. font-weight: 400;
  88. }
  89.  
  90. .desc h3, p {
  91. font-weight: 300;
  92. }
  93.  
  94. .desc h3 {
  95. color: #6c757d;
  96. font-size: 1em;
  97. padding: 10px 0 10px 0;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement