mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 22:57:55 +00:00
11678fe7cd
- Add /subdomains page listing all 20 PezkuwiChain subdomains - Add Back to Home button to Subdomains page - Create NetworkPage reusable component for network details - Add 7 network subpages: /mainnet, /staging, /testnet, /beta, /alfa, /development, /local - Update ChainSpecs network cards to navigate to network subpages - Add i18n translations for chainSpecs section in en.ts - Add SDK docs with rebranding support (rebrand-rustdoc.cjs) - Add generate-docs-structure.cjs for automatic docs generation - Update shared libs: endpoints, polkadot, wallet, xcm-bridge - Add new token logos: TYR, ZGR, pezkuwi_icon - Add new pages: Explorer, Docs, Wallet, Api, Faucet, Developers, Grants, Wiki, Forum, Telemetry
58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
:root {
|
|
--polkadot-pink: #E6007A;
|
|
--polkadot-green: #56F39A;
|
|
--polkadot-lime: #D3FF33;
|
|
--polkadot-cyan: #00B2FF;
|
|
--polkadot-purple: #552BBF;
|
|
}
|
|
|
|
/* Light theme */
|
|
html[data-theme="light"] {
|
|
--quote-background: #f9f9f9;
|
|
--quote-border: #ccc;
|
|
--quote-text: #333;
|
|
}
|
|
|
|
/* Dark theme */
|
|
html[data-theme="dark"] {
|
|
--quote-background: #333;
|
|
--quote-border: #555;
|
|
--quote-text: #f9f9f9;
|
|
}
|
|
|
|
/* Ayu theme */
|
|
html[data-theme="ayu"] {
|
|
--quote-background: #272822;
|
|
--quote-border: #383830;
|
|
--quote-text: #f8f8f2;
|
|
}
|
|
|
|
body.sdk-docs {
|
|
nav.sidebar>div.sidebar-crate>a>img {
|
|
width: 190px;
|
|
height: 52px;
|
|
}
|
|
|
|
nav.sidebar {
|
|
flex: 0 0 250px;
|
|
}
|
|
}
|
|
|
|
html[data-theme="light"] .sidebar-crate > .logo-container > img {
|
|
content: url("https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/docs/images/Polkadot_Logo_Horizontal_Pink_Black.png");
|
|
}
|
|
|
|
/* Custom styles for blockquotes */
|
|
blockquote {
|
|
background-color: var(--quote-background);
|
|
border-left: 5px solid var(--quote-border);
|
|
color: var(--quote-text);
|
|
margin: 1em 0;
|
|
padding: 1em 1.5em;
|
|
/* font-style: italic; */
|
|
}
|
|
|
|
blockquote p {
|
|
margin: 0;
|
|
}
|