landing.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. *{margin:0;padding:0;}
  2. body{
  3. font-family: 'Saira', sans-serif;
  4. }
  5. #login{
  6. display: none;
  7. }
  8. /* Displaying the choice for the POS system */
  9. #pos{
  10. display: none;
  11. flex-direction: column;
  12. align-items: center;
  13. }
  14. .cards{
  15. display: flex;
  16. justify-content: space-around;
  17. }
  18. .cards > *{
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: space-around;
  22. text-align: center;
  23. width: 300px;
  24. height: 200px;
  25. border-radius: 25px;
  26. border: 2px solid black;
  27. padding: 50px;
  28. cursor: pointer;
  29. margin: 25px;
  30. box-shadow: 0 0 20px black;
  31. }
  32. .cards > *:hover{
  33. box-shadow: 0 0 25px #ff626b;
  34. }
  35. .cards > *:active{
  36. box-shadow: 0 0 10px #ff626b;
  37. }
  38. .cards p{
  39. margin-top: 25px;
  40. font-size: 25px;
  41. font-weight: bold;
  42. }
  43. .cards img{
  44. margin: auto 10px;
  45. }