style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. div.wpcf7 {
  35. background-color: #fbf7f2;
  36. padding:20px 30px;
  37. }
  38. .wpcf7 input[type="submit"],
  39. .wpcf7 input[type="button"] {
  40. width:100%;
  41. text-align:center;
  42. text-transform:uppercase;
  43. font-size: 20px;
  44. }
  45. .wpcf7-form input,
  46. .wpcf7-form textarea {
  47. color: #1f252b;
  48. font-size: 20px;
  49. width: 100%;
  50. padding: 12px 16px;
  51. border-radius: 0;
  52. border: 0;
  53. }
  54. .wpcf7-form p {
  55. margin: 0 0 28px;
  56. }
  57. .wpcf7-text:focus,
  58. .wpcf7-textarea:focus {
  59. outline: 1px solid #3e64a0;
  60. outline-offset: 0;
  61. }