We use standard HTML5 tags, attributes and rules! In many cases you just need write standard html in semantic way and don't think about styling!!
- https://html.spec.whatwg.org/multipage/
- http://w3c.github.io/html/dom.html#allowed-aria-roles-states-and-properties
We always care to write content in semantic way by all resources.
- https://html.spec.whatwg.org/multipage/
- https://www.w3.org/TR/rdfa-core/
- https://www.w3.org/TR/rdfa-lite/
- https://schema.org/
- https://search.google.com/structured-data/testing-tool
We respect semantic content and style content by design languages.
We still hard work to complete exiting languages and add more languages with complete guides!
- Mozilla Firefox: https://dxr.mozilla.org/mozilla-central/source/layout/style/res/html.css
- Google Chrome: https://chromium.googlesource.com/chromium/blink/+/master/Source/core/css/html.css
- Safari (WebKit): https://trac.webkit.org/browser/trunk/Source/WebCore/css/html.css
- Internet Explorer: You can't view Internet Explorer's UA Stylesheet because it's not open source.
- Servo (Firefox): https://github.com/servo/servo/blob/master/resources/user-agent.css
-
package manager:
-
git submodule: Read more about git submodule here
- Add:
git submodule add https://github.com/GeniusesGroup/design-languages
- Clone:
git clone ...
and after callgit submodule init
- Update:
git submodule update --remote
- Add:
Easily add desire design language files to your HTML file like
<link rel="stylesheet" type="text/css" href="/design-languages/material/dialog.css">
<link rel="stylesheet" type="text/css" href="/design-languages/theme-light.css">
or easily run the combined script and add desire design language in one file to your HTML file like
<link rel="stylesheet" type="text/css" href="/design-languages/material.css">
<link rel="stylesheet" type="text/css" href="/design-languages/theme-light.css">
Also you can use gui-engine concept in libjs to load dynamically user selected design language and theme!
This package is under development and not ready to use in real production. It can have breakable changes until we remove this part from README! But we are glad to hear your experience or idea about this concept.