text4u
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.antlers.html 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <!doctype html>
  2. <html lang="{{ site:short_locale }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>TEXT4U</title>
  8. {{ vite src="resources/js/site.js|resources/css/site.css" }}
  9. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  10. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous" defer></script>
  11. <style>
  12. .trapezium-nav-end {
  13. clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  14. }
  15. .trapezium-nav {
  16. clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  17. }
  18. .trapezium-hero {
  19. clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  20. }
  21. .trapezium-hero p{
  22. font-size: 22px;
  23. }
  24. .trapezium {
  25. clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  26. }
  27. .hero-main-text{
  28. font-size: 76px;
  29. }
  30. .font-50{
  31. font-size: 50px;
  32. }
  33. .font-37{
  34. font-size: 37px;
  35. }
  36. .font-21{
  37. font-size: 21px;
  38. }
  39. .font-18{
  40. font-size: 18px;
  41. }
  42. .font-16{
  43. font-size: 16px;
  44. }
  45. .form-container {
  46. padding: 20px;
  47. border-radius: 8px;
  48. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  49. }
  50. .form-container h4 {
  51. margin-bottom: 20px;
  52. text-align: start;
  53. }
  54. .form-group {
  55. margin-bottom: 15px;
  56. }
  57. .form-group label {
  58. display: block;
  59. margin-bottom: 5px;
  60. font-weight: bolder;
  61. }
  62. .form-group input {
  63. width: 100%;
  64. padding: 10px;
  65. border: 1px solid #ccc;
  66. border-radius: 0; /* Perfect rectangle */
  67. background-color: #f1eddf; /* Lighter version of #DED7C4 */
  68. font-size: 16px;
  69. box-sizing: border-box;
  70. }
  71. .form-group input:focus {
  72. border-color: #aaa;
  73. outline: none;
  74. }
  75. .submit-btn {
  76. width: 100%;
  77. padding: 10px;
  78. background-color: #333;
  79. color: #fff;
  80. border: none;
  81. cursor: pointer;
  82. font-size: 16px;
  83. }
  84. .submit-btn:hover {
  85. background-color: #555;
  86. }
  87. .footer-nav ul {
  88. list-style-type: none; /* Remove bullets */
  89. padding: 0;
  90. margin: 0;
  91. }
  92. .footer-nav ul li {
  93. margin-bottom: 18px /* Add some spacing between items */
  94. }
  95. .footer-nav ul li a {
  96. text-decoration: none; /* Remove underline */
  97. color: #000; /* Default link color */
  98. }
  99. .footer-nav ul li a:hover {
  100. color: #396868; /* Change color on hover */
  101. }
  102. .nav-item{
  103. background-color: white;
  104. }
  105. .nav-item.active{
  106. background-color: rgba(0, 0, 0, 0.2) !important;
  107. }
  108. .nav-item a{
  109. color: #000 !important;
  110. }
  111. .nav-item.active a{
  112. color: #159B9B !important;
  113. background-color: #fff;
  114. }
  115. </style>
  116. </head>
  117. <body class="bg-white text-dark">
  118. <div class="container-fluid p-0">
  119. {{ template_content }}
  120. </div>
  121. </body>
  122. </html>