-
Notifications
You must be signed in to change notification settings - Fork 69
create rich menu operation #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
aae7ae3
14f2118
0f25ba1
6744607
4f27622
b281485
d0229a4
6eb6d10
417e9d7
34e8566
cb128ab
3f81982
15bfb77
3e3ae9e
1f2f63e
9a97695
a1749ce
0a39c3c
b4f256b
fac005c
d709b29
760c059
280a98c
73416bf
6237d7e
28ba035
63ffcc6
36f68fd
9c6171c
019ec7c
0b6bd3d
e266dec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, if these example images are not used, I think we should remove them to avoid more maintenance. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nits] templete -> template 🙏 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 100px; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
Comment on lines
+6
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||
.column-item-01 { | ||
margin: 10px; | ||
height: calc((100% - 20px)); | ||
width: calc((100% - 20px)); | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item column-item-01"> | ||
<h3>item01</h3> | ||
</div> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 70px; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
.column-item-02 { | ||
margin: 10px 0px 10px 10px; | ||
height: calc((100% - 20px)); | ||
width: calc((100% - 30px) / 2); | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item column-item-02"> | ||
<h3>item01</h3> | ||
</div> | ||
<div class="column-item column-item-02"> | ||
<h3>item02</h3> | ||
</div> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
.column-item-left { | ||
display: flex; | ||
flex: 2; | ||
font-size: 70px; | ||
} | ||
.column-item-right { | ||
display: flex; | ||
flex: 1; | ||
flex-direction: column; | ||
height: 100%; | ||
font-size: 50px; | ||
} | ||
.column-item-03-right { | ||
flex: 1; | ||
margin: 10px 0px 10px 10px; | ||
} | ||
.column-item-03-left-top { | ||
flex: 1; | ||
margin: 10px 10px 10px 10px; | ||
} | ||
.column-item-03-left-bottom { | ||
flex: 1; | ||
margin: 0px 10px 10px 10px; | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item-left"> | ||
<div class="column-item column-item-03-right"> | ||
<h3>item01</h3> | ||
</div> | ||
</div> | ||
<div class="column-item-right"> | ||
<div class="column-item column-item-03-left-top"> | ||
<h3>item02</h3> | ||
</div> | ||
<div class="column-item column-item-03-left-bottom"> | ||
<h3>item03</h3> | ||
</div> | ||
</div> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 50px; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
.column-item-04 { | ||
height: calc((100% - 30px) / 2); | ||
width: calc((100% - 30px) / 2); | ||
} | ||
.column-item-04-top { | ||
margin: 10px 0px 0px 10px; | ||
} | ||
.column-item-04-bottom { | ||
margin: 0px 0px 0px 10px; | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item column-item-04 column-item-04-top"> | ||
<h3>item01</h3> | ||
</div> | ||
<div class="column-item column-item-04 column-item-04-top"> | ||
<h3>item02</h3> | ||
</div> | ||
<div class="column-item column-item-04 column-item-04-bottom"> | ||
<h3>item03</h3> | ||
</div> | ||
<div class="column-item column-item-04 column-item-04-bottom"> | ||
<h3>item04</h3> | ||
</div> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 50px; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
.column-item-05 { | ||
height: calc((100% - 30px) / 2); | ||
width: calc((100% - 40px) / 3); | ||
} | ||
.column-item-05-top-wide { | ||
width: calc((100% - 40px) / 3 * 2 + 10px); | ||
margin: 10px 0px 0px 10px; | ||
} | ||
.column-item-05-top-small { | ||
margin: 10px 0px 0px 10px; | ||
} | ||
.column-item-05-bottom { | ||
margin: 0px 0px 0px 10px; | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item column-item-05 column-item column-item-05-top-wide"> | ||
<h3>item01</h3> | ||
</div> | ||
<div class="column-item column-item-05 column-item column-item-05-top-small"> | ||
<h3>item02</h3> | ||
</div> | ||
<div class="column-item column-item-05 column-item column-item-05-bottom"> | ||
<h3>item03</h3> | ||
</div> | ||
<div class="column-item column-item-05 column-item column-item-05-bottom"> | ||
<h3>item04</h3> | ||
</div> | ||
<div class="column-item column-item-05 column-item column-item-05-bottom"> | ||
<h3>item05</h3> | ||
</div> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
marp: true | ||
size: 16:9 | ||
--- | ||
<style> | ||
section { | ||
padding: 0 !important; | ||
background-color: orange; | ||
height: 100% !important; | ||
margin-top: 0 !important; | ||
margin-bottom: 0 !important; | ||
} | ||
.columns-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.column-item { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: white; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
.column-item h3 { | ||
font-weight: bold; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 50px; | ||
white-space: normal; | ||
word-break: break-all; | ||
} | ||
.column-item-06 { | ||
height: calc((100% - 30px) / 2); | ||
width: calc((100% - 40px) / 3); | ||
} | ||
.column-item-06-top { | ||
margin: 10px 0px 0px 10px; | ||
} | ||
.column-item-06-bottom { | ||
margin: 0px 0px 0px 10px; | ||
} | ||
</style> | ||
<div class="columns-container"> | ||
<div class="column-item column-item-06 column-item column-item-06-top"> | ||
<h3>item01</h3> | ||
</div> | ||
<div class="column-item column-item-06 column-item column-item-06-top"> | ||
<h3>item02</h3> | ||
</div> | ||
<div class="column-item column-item-06 column-item column-item-06-top"> | ||
<h3>item03</h3> | ||
</div> | ||
<div class="column-item column-item-06 column-item column-item-06-bottom"> | ||
<h3>item04</h3> | ||
</div> | ||
<div class="column-item column-item-06 column-item column-item-06-bottom"> | ||
<h3>item05</h3> | ||
</div> | ||
<div class="column-item column-item-06 column-item column-item-06-bottom"> | ||
<h3>item06</h3> | ||
</div> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
packages for generating slides/images