home.component.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. .home-container {
  2. max-width: 800px;
  3. margin: 0 auto;
  4. padding: 20px;
  5. font-family: 'Poppins', sans-serif;
  6. }
  7. .welcome-section {
  8. text-align: center;
  9. margin-bottom: 30px;
  10. }
  11. .welcome-section h1 {
  12. color: #007bff;
  13. font-size: 36px;
  14. margin-bottom: 10px;
  15. }
  16. .welcome-section p {
  17. font-size: 18px;
  18. color: #6c757d;
  19. }
  20. .btn btn-primary{
  21. text-decoration: none;
  22. }
  23. .text-primary {
  24. color: #007bff;
  25. }
  26. a{
  27. text-decoration: none;
  28. }
  29. .name{
  30. font-size: 36px;
  31. display: inline;
  32. }
  33. div{
  34. display: inline;
  35. }
  36. .btn-secondary {
  37. background-color: #6c757d;
  38. border: none;
  39. color: white;
  40. padding: 10px 20px;
  41. font-size: 30px;
  42. border-radius: 4px;
  43. cursor: pointer;
  44. display: block;
  45. margin: 70px auto;
  46. }
  47. .btn-secondary:hover {
  48. background-color: #5a6268;
  49. }
  50. .btn-primary {
  51. background-color: #007bff;
  52. border: none;
  53. color: white;
  54. padding: 10px 20px;
  55. font-size: 16px;
  56. border-radius: 4px;
  57. cursor: pointer;
  58. display: block;
  59. margin: 20px auto 0;
  60. }
  61. .btn-primary:hover {
  62. background-color: #0056b3;
  63. }
  64. .user-info {
  65. text-align: center;
  66. margin-bottom: 20px;
  67. }
  68. .login-prompt {
  69. text-align: center;
  70. font-size: 18px;
  71. color: #6c757d;
  72. margin-bottom: 20px;
  73. }
  74. .website-info {
  75. margin-top: 30px;
  76. padding: 20px;
  77. background-color: #f8f9fa;
  78. border-radius: 8px;
  79. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  80. }
  81. .website-info h2 {
  82. color: #343a40;
  83. margin-bottom: 20px;
  84. font-size: 24px;
  85. text-align: center;
  86. }
  87. .info-content {
  88. display: flex;
  89. flex-direction: row;
  90. align-items: center;
  91. }
  92. .info-image {
  93. max-width: 150px;
  94. margin-right: 20px;
  95. }
  96. .info-text {
  97. flex: 1;
  98. }
  99. .info-text p {
  100. font-size: 16px;
  101. color: #6c757d;
  102. line-height: 1.5;
  103. }
  104. .info-text ul {
  105. list-style: none;
  106. padding: 0;
  107. color: #6c757d;
  108. }
  109. .info-text li {
  110. display: flex;
  111. align-items: center;
  112. margin-bottom: 10px;
  113. }
  114. .info-text li i {
  115. color: #007bff;
  116. margin-right: 10px;
  117. }
  118. .info-text li::before {
  119. content: '';
  120. }