-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added and fixed Para Styles * Added and Fixed some Para-styles
- Loading branch information
Showing
9 changed files
with
116 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Shoes.app do | ||
|
||
para "this text is in normal styl" , emphasis:"italic" | ||
|
||
para "this text is in italic style" , font: "italic normal bold 16px 'Times New Roman', serif;" | ||
|
||
|
||
para "this text is in oblique style " , family: "'Pacifico', cursive;" | ||
|
||
para "Text in Helvetica", font: "Helvetica;" | ||
|
||
para "And in Lucida", font: "'Pacifico', cursive;" | ||
|
||
para "From an example", font: "Trebuchet bold" | ||
|
||
end | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Shoes.app do | ||
para "This is Normal Variant" ,font_variant: "normal" | ||
|
||
para "This is Small Caps Variant " ,font_variant: "small-caps" | ||
|
||
end |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div id="2" style="display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start;justify-content:flex-start;align-items:flex-start;width:100%;height:100%"> | ||
<div style="height:100%;width:100%;position:relative"> | ||
<p id="3" style="font-size:12px;font-style:italic">this text is in normal styl</p> | ||
<p id="4" style="font:italic normal bold 16px 'Times New Roman',serif;;font-size:12px">this text is in italic style</p> | ||
<p id="5" style="font-size:12px;font-family:'Pacifico', cursive;">this text is in oblique style </p> | ||
<p id="6" style="font:normal normal normal medium Helvetica;;font-size:12px">Text in Helvetica</p> | ||
<p id="7" style="font:normal normal normal medium 'Pacifico',cursive;;font-size:12px">And in Lucida</p> | ||
<p id="8" style="font:normal normal bold medium Trebuchet;font-size:12px">From an example</p> | ||
<div id="root-fonts"></div> | ||
<div id="root-alerts"> </div> | ||
</div> | ||
</div> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div id="2" style="display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start;justify-content:flex-start;align-items:flex-start;width:100%;height:100%"> | ||
<div style="height:100%;width:100%;position:relative"> | ||
<p id="3" style="font-variant:normal;font-size:12px">This is Normal Variant</p> | ||
<p id="4" style="font-variant:small-caps;font-size:12px">This is Small Caps Variant </p> | ||
<div id="root-fonts"></div> | ||
<div id="root-alerts"> </div> | ||
</div> | ||
</div> |