Aucune description

styles.css 931B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* As a good practice don't edit React Components, create classes and apply those classes to
  2. the specific component you are trying to change */
  3. .screen-titles{
  4. color: #ffffff;
  5. font-size: 30px;
  6. display: flex;
  7. align-items: center;
  8. }
  9. .screen-h2 {
  10. padding-top: 20px;
  11. }
  12. /* Styles for information screen */
  13. .info-card{
  14. padding: 20px;
  15. }
  16. .info-p {
  17. line-height: 1.5;
  18. }
  19. /* Styles for home screen */
  20. .card-header {
  21. padding-left: 5px;
  22. padding-right: 5px;
  23. }
  24. .moti-download {
  25. font-size: 40px;
  26. }
  27. .moti-card {
  28. background-color: #fff;
  29. border-radius: 15px !important;
  30. padding: 15px;
  31. margin: 15px;
  32. }
  33. .moti-img {
  34. border-radius: 15px !important;
  35. overflow: hidden;
  36. }
  37. .card-date {
  38. color:#8f00ff;
  39. display:flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. }
  43. /* Styles for the flag screen */
  44. .flag-item {
  45. background-color: #fff !important;
  46. }