mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-14 06:15:46 +03:00
Theme 2024: Initial commit of new theme
This commit is contained in:
parent
50c21b4e85
commit
512d7ba421
17 changed files with 318 additions and 4 deletions
3
themes/wporg-5ftf-2024/src/style/block.json
Normal file
3
themes/wporg-5ftf-2024/src/style/block.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"script": "file:./index.js"
|
||||
}
|
2
themes/wporg-5ftf-2024/src/style/index.js
Normal file
2
themes/wporg-5ftf-2024/src/style/index.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
// Noop, just imports the CSS for webpack.
|
||||
import './style.scss';
|
12
themes/wporg-5ftf-2024/src/style/style.scss
Normal file
12
themes/wporg-5ftf-2024/src/style/style.scss
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* Note: only add styles here in cases where you can't achieve the style with
|
||||
* templates or theme.json settings.
|
||||
*/
|
||||
|
||||
/* Add default focus style. */
|
||||
:where(main) a:where(:not(.wp-element-button,.wp-block-wporg-link-wrapper)):focus,
|
||||
:where(main) button:where(:not([class*="wp-block-button"])):focus {
|
||||
outline: none;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 0 0 1.5px currentColor;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue