Angular app for CAC desktop
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

50 строки
856 B

  1. .container {
  2. width: 100%;
  3. height: 100vh;
  4. overflow: hidden;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .card-holder {
  10. width: 30vw;
  11. .logo {
  12. display: block;
  13. width: 150px;
  14. margin: 16px auto;
  15. img {
  16. display: block;
  17. object-fit: contain;
  18. }
  19. }
  20. }
  21. .card {
  22. width: 100%;
  23. h5 {
  24. color: var(--primary-text);
  25. font-size: 20px;
  26. }
  27. .action-buttons {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: flex-start;
  31. a {
  32. color: var(--secondary-text);
  33. text-decoration: none;
  34. cursor: pointer;
  35. font-size: 14px;
  36. font-weight: 500;
  37. &:hover {
  38. color: var(--primary);
  39. }
  40. }
  41. }
  42. }