Skip to content

Commit

Permalink
Deployed 5644c15 with MkDocs version: 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Akira Sasaki committed Oct 22, 2023
1 parent b636256 commit e080e0f
Show file tree
Hide file tree
Showing 8 changed files with 3,293 additions and 407 deletions.
897 changes: 897 additions & 0 deletions arduino/button/index.html

Large diffs are not rendered by default.

909 changes: 909 additions & 0 deletions arduino/circle/index.html

Large diffs are not rendered by default.

827 changes: 455 additions & 372 deletions arduino/helloworld/index.html

Large diffs are not rendered by default.

943 changes: 943 additions & 0 deletions arduino/screen/index.html

Large diffs are not rendered by default.

55 changes: 28 additions & 27 deletions css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,35 @@ body {
font-family: "Noto Sans JP";
}

.md-typeset pre {
color: #f8f8f2;
@media print {
.md-sidebar--primary, .md-sidebar--secondary {
display: none;
}
.md-content {
margin-left: 0;
}
}
.copy-button {
background-color: #333; /* 背景色を黒に近いグレーに設定 */
border: 1px solid #fff; /* 白のボーダーを追加 */
border-radius: 4px; /* 角を少し丸くする */
position: absolute;
top: 5px;
right: 5px;
padding: 5px; /* パディングを追加して、ボタンを少し大きくする */
cursor: pointer;
opacity: 0.7; /* 透明度を少し下げる */
transition: opacity 0.3s ease; /* 透明度の遷移効果を追加 */
}
.md-typeset .highlighttable {
margin-left:-20px;
margin-right: -20px;
border-radius: 0;
}
.md-typeset .highlighttable > * {
--md-code-bg-color: #222 !important;
}
.md-typeset .highlighttable .linenos .linenodiv pre span {
background-color: #222 !important;
color: #aaa !important;
margin: 0;
}
.bom_listsize {
width: 420px;
height: 300px;
}
.md-typeset .highlighttable .linenos .linenodiv pre span {
line-height: 1.472; /* この行の高さを調整してみてください。 */
background-color: #222 !important;
color: #aaa !important;
margin: 0;

.copy-button:hover {
opacity: 1; /* ホバー時に透明度を元に戻す */
}
.md-typeset .highlighttable .code .highlight pre {
line-height: 1.5; /* この行の高さも合わせて調整してください。 */
margin: 0;

.copy-button:before {
content: '\f0c5'; /* FontAwesomeのコピーアイコン */
font-family: FontAwesome;
font-size: 12px;
color: #fff; /* アイコンの色を白に設定 */
}

50 changes: 44 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,8 @@

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">

<link rel="stylesheet" href="stylesheets/extra.css">

<link rel="stylesheet" href="css/version-select.css">

<link rel="stylesheet" href="css/extra.css">

<link rel="stylesheet" href="css/custom.css">

<script>__md_scope=new URL(".",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
Expand Down Expand Up @@ -241,14 +237,14 @@


<label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
1.Arduino
Arduino
<span class="md-nav__icon md-icon"></span>
</label>

<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
<label class="md-nav__title" for="__nav_2">
<span class="md-nav__icon md-icon"></span>
1.Arduino
Arduino
</label>
<ul class="md-nav__list" data-md-scrollfix>

Expand All @@ -266,6 +262,48 @@








<li class="md-nav__item">
<a href="arduino/button/" class="md-nav__link">
ボタン
</a>
</li>









<li class="md-nav__item">
<a href="arduino/circle/" class="md-nav__link">
円の描画
</a>
</li>









<li class="md-nav__item">
<a href="arduino/screen/" class="md-nav__link">
画面の切替
</a>
</li>




</ul>
</nav>
</li>
Expand Down
19 changes: 17 additions & 2 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>None</loc>
<lastmod>2023-10-21</lastmod>
<lastmod>2023-10-22</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2023-10-21</lastmod>
<lastmod>2023-10-22</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2023-10-22</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2023-10-22</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2023-10-22</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit e080e0f

Please sign in to comment.