-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (38 loc) · 1.07 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
/**
* Theme Name: Agrippa
* Description: A great WordPress Block Theme for E-commerce Sites
* Version: 1.0.0
* Author: Letizia DI MAIO
* Author URI: https://letiziadimaio.com/
* Tags: e-commerce, full-site-editing
* Text Domain: agrippa
* Tested up to: 6.4.3
* Requires at least: 6.4.0
* Requires PHP: 8.1.23
* License: GNU General Public License v2.0 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/* Add the styles for the two Adobe Fonts I chose for "Agrippa" Theme */
h1 , h2 , h3 , h4 , h5 , h6 {
font-family: "adobe-handwriting-ernie", sans-serif ;
font-weight: 400;
font-style: normal;
}
p , div {
font-family: "cormorant-garamond", serif;
font-weight: 500;
font-style: normal;
}
/* Styles intended only for the front.*/
html {
scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
}
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}