mirror of
https://github.com/jaywcjlove/reference.git
synced 2025-06-18 21:21:21 +08:00
doc: update README.md
. a24cf740e2
This commit is contained in:
@ -849,7 +849,7 @@
|
||||
|
||||
|
||||
|
||||
<table><thead><tr><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th></tr></thead><tbody><tr><td><code>+</code></td><td>&</td><td>+=</td><td>&=</td><td>&&</td><td>==</td><td>!=</td><td>(</td><td>)</td></tr><tr><td><code>-</code></td><td>|</td><td>-=</td><td>|=</td><td>||</td><td><</td><td><=</td><td>[</td><td>]</td></tr><tr><td><code>*</code></td><td>^</td><td>*=</td><td>^=</td><td><-</td><td>></td><td>>=</td><td>{</td><td>}</td></tr><tr><td><code>/</code></td><td><<</td><td>/=</td><td><<=</td><td>++</td><td>=</td><td>:=</td><td>,</td><td>;</td></tr><tr><td><code>%</code></td><td>>></td><td>%=</td><td>>>=</td><td>--</td><td>!</td><td>...</td><td>.</td><td>:</td></tr><tr><td></td><td>&^</td><td>&^=</td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table>
|
||||
<table><thead><tr><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th></tr></thead><tbody><tr><td><code>+</code></td><td><code>&</code></td><td><code>+=</code></td><td><code>&=</code></td><td><code>&&</code></td><td><code>==</code></td><td><code>!=</code></td><td><code>(</code></td><td><code>)</code></td></tr><tr><td><code>-</code></td><td><code>|</code></td><td><code>-=</code></td><td><code>|=</code></td><td><code>||</code></td><td><code><</code></td><td><code><=</code></td><td><code>[</code></td><td><code>]</code></td></tr><tr><td><code>*</code></td><td><code>^</code></td><td><code>*=</code></td><td><code>^=</code></td><td><code><-</code></td><td><code>></code></td><td><code>>=</code></td><td><code>{</code></td><td><code>}</code></td></tr><tr><td><code>/</code></td><td><code><<</code></td><td><code>/=</code></td><td><code><<=</code></td><td><code>++</code></td><td><code>=</code></td><td><code>:=</code></td><td><code>,</code></td><td><code>;</code></td></tr><tr><td><code>%</code></td><td><code>>></code></td><td><code>%=</code></td><td><code>>>=</code></td><td><code>--</code></td><td><code>!</code></td><td><code>...</code></td><td><code>.</code></td><td><code>:</code></td></tr><tr><td></td><td><code>&^</code></td><td><code>&^=</code></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table>
|
||||
</div></div></div></div></div><div class="wrap h2body-not-exist"><div class="wrap-header h2wrap"><h2 id="另见"><a aria-hidden="true" tabindex="-1" href="#另见"><span class="icon icon-link"></span></a>另见</h2><div class="wrap-body">
|
||||
<ul>
|
||||
<li><a href="https://devhints.io/go">Devhints</a> <em>(devhints.io)</em></li>
|
||||
|
44
index.html
44
index.html
File diff suppressed because one or more lines are too long
@ -365,7 +365,7 @@ body.home .max-container a.home-button:visited:hover {
|
||||
gap: 2rem;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
.home-card a.contributing {
|
||||
.home-card :is(a.contributing, a.tag) {
|
||||
position: relative;
|
||||
}
|
||||
.home-card a.contributing::after {
|
||||
@ -380,6 +380,21 @@ body.home .max-container a.home-button:visited:hover {
|
||||
.home-card a.contributing:hover:after {
|
||||
color: var(--color-fg-muted);
|
||||
}
|
||||
.home-card a.tag::before {
|
||||
content: attr(data-lang);
|
||||
display: block;
|
||||
position: absolute;
|
||||
font-size: 10px;
|
||||
right: 6px;
|
||||
top: 6px;
|
||||
background: rgba(255 255 255 / 0.3);
|
||||
border-radius: 3px;
|
||||
padding: 1px 3px 2px 3px;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.home-card a.tag:hover:before {
|
||||
background: rgba(255 255 255 / 0.2);
|
||||
}
|
||||
|
||||
[data-color-mode*='light'] body .home-card a {
|
||||
--text-opacity: 0.75;
|
||||
|
Reference in New Issue
Block a user