-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
907 additions
and
366 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,24 @@ | ||
--- | ||
--- | ||
|
||
<h1 class="dark:text-maize text-xl font-bold">Get starded</h1> | ||
|
||
<div class="flex flex-row justify-center text-center "> | ||
<card class="bg-munsell bg-scroll flex flex-col justify-center text-center bg-indigo-400 rounded-xl shadow-lg h-44 w-44 m-1"> | ||
<h1 class="text-l text-[#FFFFFF]"> | ||
Quickstart | ||
</h1> | ||
</card> | ||
|
||
<card class="bg-munsell bg-scroll flex flex-col justify-center text-center bg-indigo-400 rounded-xl shadow-lg h-44 w-44 m-1"> | ||
<h1 class="text-l text-[#FFFFFF]"> | ||
Guides | ||
</h1> | ||
</card> | ||
|
||
<card class="bg-munsell bg-scroll flex flex-col justify-center text-center bg-indigo-400 rounded-xl shadow-lg h-44 w-44 m-1 "> | ||
<h1 class="text-l text-[#FFFFFF]"> | ||
Examples | ||
</h1> | ||
</card> | ||
</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
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 |
---|---|---|
@@ -1,21 +1,22 @@ | ||
--- | ||
--- | ||
|
||
<card class="bg-img bg-scroll flex flex-col justify-center text-center mx-3 my-16 py-5 md:m-5 md:p-4 bg-indigo-400 rounded-xl shadow-lg"> | ||
<h1 class="text-3xl font-bold"> | ||
Welcome to the <strong>MeasurementsTool</strong> C# library | ||
<card class="bg-munsell bg-scroll flex flex-col justify-center text-center mx-8 md:mx-28 my-16 py-52 md:py-44 bg-indigo-400 rounded-xl shadow-lg"> | ||
<h1 class="text-2xl md:text-5xl md:mx-10 font-bold text-[#FFFFFF]"> | ||
Welcome to <strong class="text-maize">MeasurementsTool</strong> C# library | ||
</h1> | ||
<p class="my-5 text-lg"> | ||
<p class=" text-lg mt-5 text-[#FFFFFF]"> | ||
A C# library for interacting with measures. It is designed to be easy to | ||
</p> | ||
<p class=" text-lg text-[#FFFFFF]"> | ||
use and provide a great experience for developers. | ||
</p> | ||
</card> | ||
|
||
<style> | ||
.bg-img { | ||
background-image: url(public/card-bg.webp); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
card{ | ||
background-image: url(/MeasurementsTool/tape2.jpg); | ||
background-repeat: no-repeat; | ||
height: 39px; | ||
} | ||
</style> | ||
</style> |
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,64 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
--- | ||
|
||
<Layout title="Measurements Tool - Style guide"> | ||
<main class="mx-0 md:mx-72"> | ||
<div class="flex flex-row m-5"> | ||
<div class="flex-col m-5"> | ||
<div class="bg-maize-100"></div> | ||
<div class="bg-maize-200"></div> | ||
<div class="bg-maize-300"></div> | ||
<div class="bg-maize-400"></div> | ||
<div class="bg-maize-500"></div> | ||
<div class="bg-maize-600"></div> | ||
<div class="bg-maize-700"></div> | ||
<div class="bg-maize-800"></div> | ||
<div class="bg-maize-900"></div> | ||
</div> | ||
|
||
<div class="flex-col m-5"> | ||
<div class="bg-oxford_blue-100"></div> | ||
<div class="bg-oxford_blue-200"></div> | ||
<div class="bg-oxford_blue-300"></div> | ||
<div class="bg-oxford_blue-400"></div> | ||
<div class="bg-oxford_blue-500"></div> | ||
<div class="bg-oxford_blue-600"></div> | ||
<div class="bg-oxford_blue-700"></div> | ||
<div class="bg-oxford_blue-800"></div> | ||
<div class="bg-oxford_blue-900"></div> | ||
</div> | ||
|
||
<div class="flex-col m-5"> | ||
<div class="bg-gunmetal-100"></div> | ||
<div class="bg-gunmetal-200"></div> | ||
<div class="bg-gunmetal-300"></div> | ||
<div class="bg-gunmetal-400"></div> | ||
<div class="bg-gunmetal-500"></div> | ||
<div class="bg-gunmetal-600"></div> | ||
<div class="bg-gunmetal-700"></div> | ||
<div class="bg-gunmetal-800"></div> | ||
<div class="bg-gunmetal-900"></div> | ||
</div> | ||
|
||
<div class="flex-col m-5"> | ||
<div class="bg-munsell-100"></div> | ||
<div class="bg-munsell-200"></div> | ||
<div class="bg-munsell-300"></div> | ||
<div class="bg-munsell-400"></div> | ||
<div class="bg-munsell-500"></div> | ||
<div class="bg-munsell-600"></div> | ||
<div class="bg-munsell-700"></div> | ||
<div class="bg-munsell-800"></div> | ||
<div class="bg-munsell-900"></div> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> | ||
|
||
<style> | ||
div { | ||
width: 50px; | ||
height: 50px; | ||
} | ||
</style> |
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