CREATE TABLE users (
id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, -- 内部用(高速)
uuid BINARY(16) NOT NULL UNIQUE, -- 外部公開用
name VARCHAR(255),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
INDEX idx_uuid (uuid)
);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .toc { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| z-index: 1; | |
| } | |
| .toc-list { | |
| scroll-target-group: auto; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container { | |
| height: 300vh; | |
| } | |
| .ornament-container { | |
| position: fixed; | |
| bottom: 0; | |
| left: 0; | |
| width: 100%; | |
| z-index: 100; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| 参照: https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap?hl=ja | |
| 1ファイルで済むパターン | |
| 制限: | |
| - 最大 50,000 URL | |
| - 最大 50MB(非圧縮時) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .popover-target { | |
| position: absolute; | |
| top: anchor(bottom); | |
| left: anchor(center); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* @layer宣言の外で記述されているスタイル */ | |
| .text { | |
| color: red !important; | |
| font-size: 1rem !important; | |
| text-align: start !important; | |
| text-decoration: underline double !important; | |
| margin-top: 400px !important; | |
| } | |
| .text { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .hoge{ | |
| /*ここの詳細度は1*/ | |
| } | |
| .hoge.hoge{ | |
| /*ここの詳細度は2*/ | |
| } |