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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
diff --git a/example/sakura.css b/example/sakura.css
index 1297f86ddf91e9e5c9a2e781321c4ddfe796a818..53b47996dc0901c6b6ce7bead96da85b55cacbe5 100644
--- a/example/sakura.css
+++ b/example/sakura.css
@@ -6,7 +6,8 @@ */
/* Body */
html {
font-size: 62.5%;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
+ "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
body {
@@ -38,7 +39,8 @@ h4,
h5,
h6 {
line-height: 1.1;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
+ "Helvetica Neue", Arial, "Noto Sans", sans-serif;
font-weight: 700;
margin-top: 3rem;
margin-bottom: 1.5rem;
@@ -155,7 +157,7 @@ background-color: #f1f1f1;
white-space: pre-wrap;
}
-pre>code {
+pre > code {
padding: 0;
background-color: transparent;
white-space: pre;
@@ -193,10 +195,10 @@ }
.button,
button,
-input[type=submit],
-input[type=reset],
-input[type=button],
-input[type=file]::file-selector-button {
+input[type="submit"],
+input[type="reset"],
+input[type="button"],
+input[type="file"]::file-selector-button {
display: inline-block;
padding: 5px 10px;
text-align: center;
@@ -212,20 +214,20 @@ }
.button[disabled],
button[disabled],
-input[type=submit][disabled],
-input[type=reset][disabled],
-input[type=button][disabled],
-input[type=file]::file-selector-button[disabled] {
+input[type="submit"][disabled],
+input[type="reset"][disabled],
+input[type="button"][disabled],
+input[type="file"]::file-selector-button[disabled] {
cursor: default;
opacity: 0.5;
}
.button:hover,
button:hover,
-input[type=submit]:hover,
-input[type=reset]:hover,
-input[type=button]:hover,
-input[type=file]::file-selector-button:hover {
+input[type="submit"]:hover,
+input[type="reset"]:hover,
+input[type="button"]:hover,
+input[type="file"]::file-selector-button:hover {
background-color: #982c61;
color: #f9f9f9;
outline: 0;
@@ -233,10 +235,10 @@ }
.button:focus-visible,
button:focus-visible,
-input[type=submit]:focus-visible,
-input[type=reset]:focus-visible,
-input[type=button]:focus-visible,
-input[type=file]::file-selector-button:focus-visible {
+input[type="submit"]:focus-visible,
+input[type="reset"]:focus-visible,
+input[type="button"]:focus-visible,
+input[type="file"]::file-selector-button:focus-visible {
outline-style: solid;
outline-width: 2px;
}
@@ -262,7 +264,7 @@ border: 1px solid #1d7484;
outline: 0;
}
-input[type=checkbox]:focus {
+input[type="checkbox"]:focus {
outline: 1px dotted #1d7484;
}
@@ -272,4 +274,4 @@ fieldset {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
-}
\ No newline at end of file
+}
|