landing.css 1.1 KB

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