-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (49 loc) · 1.58 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
/*
Theme Name: vividmono
Theme URI: https://vividmono.deansas.org/
Author: Dean Sas
Author URI: https://deansas.org/
Description: VividMono is designed to be a clean and simple theme for personal blogging. It features a monochrome palette with a variety of style variations each adding a burst of vivid colour to bring your site to life.
Requires at least: 6.6
Tested up to: 6.6.1
Requires PHP: 5.7
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vividmono
Tags: blog, block-styles, featured-images, full-site-editing, style-variations, threaded-comments, translation-ready
/*
* Control the hover stylings of outline block style.
* Unnecessary once block styles are configurable via theme.json
* https://github.com/WordPress/gutenberg/issues/42794
*/
.wp-block-button.is-style-outline >.wp-block-button__link:not(.has-background):hover {
background-color: var(--wp--preset--color--primary);
border-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--base);
}
/*
* Link styles
* https://github.com/WordPress/gutenberg/issues/42319
*/
a {
text-decoration-thickness: 0.5px !important;
text-underline-offset: 4px;
}
/*
* Navigation Block
* Reset the padding from List block
* https://github.com/WordPress/gutenberg/issues/50486
*/
.wp-block-navigation ul {
padding: unset;
}
/*
* Pull quote Block
* Reset the browser default margins for blockquote and paragraph element
* https://github.com/WordPress/gutenberg/issues/44129
*/
.wp-block-pullquote blockquote,
.wp-block-pullquote p {
margin: 0;
}