π΄ Minimalist. Modern. Simple. π΄ A classless and agnostic CSS library.
- Table of contents
- Add Palm Tree to your project
- Keep in mind
- Starter template
- How to Contribute
- Credits
Copy-paste the stylesheet <link>
into your <head>
before all other stylesheets to load our CSS.
<!-- Palm Tree CSS -->
<link
rel="stylesheet"
href="https://puzzlerdev.github.io/palm-tree-css-library/style.min.css"
crossorigin="anonymous"
/>
The same but without minifying.
<!-- Palm Tree CSS -->
<link rel="stylesheet" href="https://puzzlerdev.github.io/palm-tree-css-library/style.css" crossorigin="anonymous" />
Palm Tree uses viewport meta tag so you need to add it to your head
.
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
We recommend using the HTML5 structure, the initial code should be as follows.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Palm Tree CSS -->
<link
rel="stylesheet"
href="https://puzzlerdev.github.io/palm-tree-css-library/style.min.css"
crossorigin="anonymous"
/>
<title>Palm Tree</title>
</head>
<body>
<h1>Hello, Palm Tree!</h1>
<!-- Your code -->
</body>
</html>
The contribution guideline is derived from ConventionalCommits.org
Be kind to one another. We're striving to make Conventional Commits an inclusive environment that's great for first time open-source contributors.
Conventional Commits use the GitHub flow as main versioning workflow
- Fork the Palm Tree repository.
- Create a new branch for each feature, fix or improvement.
- Send a pull request from each feature branch to dev branch.
It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch.
This allow us to review and pull in new features or improvements individually.
All pull requests SHOULD adhere to the Conventional Commits specification
You must agree that your patch will be licensed under the Conventional Commit License, and when we change the license we will assume that you agreed with the change unless you object to the changes in time.
This project was initially started by PuzzlerDev because we decided not to continue with this organization. Then it was moved to the Palm Tree CSS organization to be maintained by the community, specially by the Gentleman Programming community.
Thanks to all the contributors!!