style.css 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. Theme Name: Paimio
  3. Theme URI: https://wordpress.com/theme/paimio/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: Paimio is a minimal blogging theme inspired by architects and designers Alvar, Aino and Elissa Aalto.
  7. Requires at least: 6.1
  8. Tested up to: 6.1
  9. Requires PHP: 5.7
  10. Version: 1.0.3
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Template:
  14. Text Domain: paimio
  15. Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage, blog
  16. */
  17. /*
  18. * Control the hover stylings of outline block style.
  19. * Unnecessary once block styles are configurable via theme.json
  20. * https://github.com/WordPress/gutenberg/issues/42794
  21. */
  22. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  23. background-color: var(--wp--preset--color--secondary);
  24. color: var(--wp--preset--color--background);
  25. border-color: var(--wp--preset--color--secondary);
  26. }
  27. /**
  28. * Currently table styles are only available with 'wp-block-styles'
  29. * theme support (block css) thus the following needs to be included
  30. * since 'wp-block-styles' aren't used for this theme.
  31. * https://github.com/WordPress/gutenberg/issues/45065
  32. */
  33. .wp-block-table thead {
  34. border-bottom: 3px solid;
  35. }
  36. .wp-block-table tfoot {
  37. border-top: 3px solid;
  38. }
  39. .wp-block-table td,
  40. .wp-block-table th {
  41. padding: var(--wp--preset--spacing--30);
  42. border: 1px solid;
  43. word-break: normal;
  44. }
  45. .wp-block-table figcaption {
  46. font-size: var(--wp--preset--font-size--small);
  47. text-align: center;
  48. }
  49. /*
  50. * Link styles
  51. * https://github.com/WordPress/gutenberg/issues/42319
  52. */
  53. a {
  54. text-decoration-thickness: .0625em !important;
  55. text-underline-offset: .15em;
  56. }
  57. /*
  58. * Search block (inside button) styles
  59. * https://github.com/WordPress/gutenberg/issues/39946
  60. */
  61. .wp-block-search__button-inside > .wp-block-search__inside-wrapper {
  62. box-sizing: border-box;
  63. }
  64. .wp-block-search__button-inside .wp-block-search__input {
  65. padding: 0 0.25rem;
  66. }