-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·48 lines (41 loc) · 1.05 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
/*
Theme Name: Outermost
Theme URI: https://github.com/wordpress/theme-experiments/
Author: Nick Diego
Author URI: https://www.nickdiego.com/
Description: Outermost is an experimental block-based theme for WordPress.
Requires at least: 5.3
Tested up to: 5.5
Requires PHP: 5.6
Version: 0.6.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: outermost
GitHub Theme URI: ndiego/outermost
Primary Branch: main
*/
/*--------------------------------------------------------------
# Shared Styles
--------------------------------------------------------------*/
@import "assets/css/core-blocks.css";
@import "assets/css/third-party-blocks.css";
@import "assets/css/style-shared.css";
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
margin: 0;
padding: 0;
}
/* Smooth out the fonts */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
height: auto;
max-width: 100%;
}
* {
box-sizing: border-box;
}