-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (36 loc) · 978 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Theme Name: Written
Theme URI: https://www.oik-plugins.com/oik-themes/written
Description: An experimental FSE theme to replace Genesis-hm
Author: Bobbing Wide
Author URI: https://www.oik-plugins.com/author/bobbingwide
Version: 0.0.0
Tags: blocks, Gutenberg, FSE, oik, Full Site Editing
Requires at least: 5.7.0
Requires PHP: 7.4
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text domain: written
*/
/**
Add registered style for images which grow when hovered.
*/
.is-style-grows img {
transition: all 1s ease;
margin: 0 2%;
max-width: 96%;
}
.is-style-grows img:hover {
margin: 0;
max-width: 100%;
}
/* Don't show the underlining on a site title link. */
.wp-block-site-title a {
text-decoration: none;
}
/* When site title is hovered then show a small dotted underline. */
.wp-block-site-title a:hover {
text-decoration-line: underline;
text-decoration-style: dotted;
text-decoration-thickness: 0.05em;
}