style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*!
  2. Theme Name: Fix-Up Festival
  3. Theme URI: https://fixupfestival.com
  4. Author: windhamdavid
  5. Author URI: https://davidwindham.com
  6. Description: A Theme for the Fix-Up Festival
  7. Version: 0.1.0
  8. Tags: Full Site Editing, Blocks, Patterns
  9. Requires PHP: 7.4
  10. Tested up to: 6.4.2
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Thanks:
  14. Twenty Twenty Four * GNU GPL v2 or later
  15. */
  16. a {
  17. position: relative;
  18. }
  19. a::before {
  20. content: "";
  21. position: absolute;
  22. display: block;
  23. width: 100%;
  24. height: 2px;
  25. bottom: 0;
  26. left: 0;
  27. background-color: var(--wp--preset--color--primary);
  28. transform: scaleX(0);
  29. transition: transform 0.3s ease;
  30. }
  31. a:hover::before {
  32. transform: scaleX(1);
  33. }
  34. .wp-block-navigation-item a:hover {
  35. color: var(--wp--preset--color--tertiary) !important;
  36. }
  37. .wp-block-navigation-item a::before {
  38. color: var(--wp--preset--color--base) !important;
  39. }
  40. .current-menu-item a {
  41. color: var(--wp--preset--color--tertiary) !important;
  42. }
  43. .wp-block-navigation-item.current-menu-item.wp-block-navigation-link {
  44. color: #365ABA !important;
  45. }
  46. footer a {
  47. color:var(--wp--preset--color--base);
  48. }
  49. footer a:hover {
  50. color:var(--wp--preset--color--tertiary) !important;
  51. }
  52. footer ul li {
  53. margin-block-start: 10px;
  54. }
  55. h1,h2,h3 {
  56. color: var(--wp--preset--color--primary);
  57. }
  58. blockquote {
  59. font-family: Georgia, serif;
  60. font-size: 21px;
  61. font-style: italic;
  62. margin: 30px;
  63. padding: 20px 50px;
  64. line-height: 1.45;
  65. position: relative;
  66. color: #383838;
  67. background:#f5f5f5;
  68. border-radius: 10px;
  69. }
  70. blockquote:before {
  71. display: block;
  72. content: "\201C";
  73. font-size: 80px;
  74. position: absolute;
  75. left: 0px;
  76. top: -10px;
  77. color: #b4b4b4;
  78. }
  79. blockquote:after {
  80. display: block;
  81. content: "\201D";
  82. font-size: 80px;
  83. position: absolute;
  84. right: 10px;
  85. bottom: -40px;
  86. color: #b4b4b4;
  87. }
  88. blockquote cite {
  89. font-style: normal;
  90. text-align: right;
  91. font-size: 1rem;
  92. display: block;
  93. margin-top: 5px;
  94. color: var(--wp--preset--color--primary);
  95. }
  96. .wp-block-post-template {
  97. padding-top: 0;
  98. padding-bottom: 0;
  99. }
  100. /********* contact form 7 **********/
  101. .grecaptcha-badge {
  102. visibility: hidden;
  103. }
  104. div.wpcf7 {
  105. background-color: #f5f5f5;
  106. padding:20px 30px;
  107. }
  108. .wpcf7 input[type="submit"],
  109. .wpcf7 input[type="button"] {
  110. width:100%;
  111. text-align:center;
  112. text-transform:uppercase;
  113. font-size: 20px;
  114. background-color:var(--wp--preset--color--primary);
  115. color:var(--wp--preset--color--base);
  116. }
  117. .wpcf7-form input,
  118. .wpcf7-form textarea {
  119. color: #1f252b;
  120. font-size: 20px;
  121. width: 95%;
  122. padding: 12px 16px;
  123. border-radius: 0;
  124. border: 0;
  125. }
  126. .wpcf7-form p {
  127. margin: 0 0 28px;
  128. }
  129. .wpcf7-text:focus,
  130. .wpcf7-textarea:focus {
  131. outline: 1px solid #3e64a0;
  132. outline-offset: 0;
  133. }