-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replaced font as per UI designer request
- Loading branch information
1 parent
e8b0c35
commit a85bc24
Showing
5 changed files
with
92 additions
and
21 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
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,86 @@ | ||
<div class="container"> | ||
<h1 class="my-4">Siyenshop Style Guide</h1> | ||
|
||
<!-- Buttons --> | ||
<div class="style-guide-section"> | ||
<h2>Buttons</h2> | ||
<button class="btn btn-primary">Primary Button</button> | ||
<button class="btn btn-secondary">Secondary Button</button> | ||
<button class="btn btn-success">Success Button</button> | ||
<button class="btn btn-danger">Danger Button</button> | ||
<button class="btn btn-warning">Warning Button</button> | ||
<button class="btn btn-info">Info Button</button> | ||
<button class="btn btn-light">Light Button</button> | ||
<button class="btn btn-dark">Dark Button</button> | ||
</div> | ||
|
||
<!-- Colors --> | ||
<div class="style-guide-section"> | ||
<h2>Colors</h2> | ||
<div class="p-3 mb-2 bg-primary text-white">Primary</div> | ||
<div class="p-3 mb-2 bg-secondary text-white">Secondary</div> | ||
<div class="p-3 mb-2 bg-success text-white">Success</div> | ||
<div class="p-3 mb-2 bg-danger text-white">Danger</div> | ||
<div class="p-3 mb-2 bg-warning text-dark">Warning</div> | ||
<div class="p-3 mb-2 bg-info text-white">Info</div> | ||
<div class="p-3 mb-2 bg-light text-dark">Light</div> | ||
<div class="p-3 mb-2 bg-dark text-white">Dark</div> | ||
</div> | ||
|
||
<!-- Font Sizes --> | ||
<div class="style-guide-section"> | ||
<h2>Font Sizes</h2> | ||
<p class="fs-1">fs-1</p> | ||
<p class="fs-2">fs-2</p> | ||
<p class="fs-3">fs-3</p> | ||
<p class="fs-4">fs-4</p> | ||
<p class="fs-5">fs-5</p> | ||
<p class="fs-6">fs-6</p> | ||
<p class="fs-7">fs-7</p> | ||
<p class="fs-8">fs-8</p> | ||
<p class="fs-9">fs-9</p> | ||
<p class="fs-10">fs-10</p> | ||
<p class="fs-11">fs-11</p> | ||
<p class="fs-12">fs-12</p> | ||
<p class="fs-13">fs-13</p> | ||
<p class="fs-14">fs-14</p> | ||
<p class="fs-15">fs-15</p> | ||
|
||
<p>Normal text</p> | ||
</div> | ||
|
||
<!-- Font Weights --> | ||
<div class="style-guide-section"> | ||
<h2>Font Weights</h2> | ||
<p class="fw-lighter fs-5">lighter text</p> | ||
<p class="fw-light fs-5">light text</p> | ||
<p class="fw-normal fs-5">normal text</p> | ||
<p class="fw-medium fs-5">medium text</p> | ||
<p class="fw-semibold fs-5">semibold text</p> | ||
<p class="fw-bold fs-5">bold text</p> | ||
<p class="fw-bolder fs-5">bolder text</p> | ||
|
||
|
||
</div> | ||
|
||
<!-- Input Fields --> | ||
<div class="style-guide-section"> | ||
<h2>Input Fields</h2> | ||
<form> | ||
<div class="form-group"> | ||
<label for="exampleInputEmail1">Email address</label> | ||
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="exampleInputPassword1">Password</label> | ||
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> | ||
</div> | ||
<div class="form-group form-check"> | ||
<input type="checkbox" class="form-check-input" id="exampleCheck1"> | ||
<label class="form-check-label" for="exampleCheck1">Check me out</label> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</form> | ||
</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