diff --git a/docs/docs.html b/docs/docs.html
index 3e26d02..11ba22f 100644
--- a/docs/docs.html
+++ b/docs/docs.html
@@ -423,18 +423,18 @@
Best practices
<form>
<fieldset>
<legend>Simple form</legend>
- <div> class="row">
- <div> class="col-sm-12 col-md-6">
+ <div class="row">
+ <div class="col-sm-12 col-md-6">
<label for="username">Username</label>
<input type="text" id="Username" placeholder="Username"/>
</div>
- <div> class="col-sm-12 col-md-6">
+ <div class="col-sm-12 col-md-6">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Password"/>
</div>
</div>
</fieldset>
-</form>
Do: Form inputs are inline by defaut, however you can combine forms with the grid system to create aligned forms.
+</form>Do: Form inputs are inline by default, however you can combine forms with the grid system to create aligned forms.
Notes
- Using the
<fieldset>
and <legend>
elements is highly recommended, as it improves semantic markup and accessibility. - Some input elements, such as date & time, color and range types, are not supported and, as a result, do not have a default style defined for them. You can define said styles manually if you need to use them in your web app.
Customization
- Text color for forms and legend elements can be changed by changing the value of the
--form-fore-color
variable. - Background color for forms can be changed by changing the value of the
--form-back-color
variable. - Border color for forms and fieldset elements can be changed by changing the value of the
--form-border-color
variable. - Text color for input elements can be changed by changing the value of the
--input-fore-color
variable. - Background color for input elements can be changed by changing the value of the
--input-back-color
variable. - Border color for input elements can be changed by changing the value of the
--input-border-color
variable. - Border color for focused and invalid input elements can be changed by changing the value of the
--input-focus-color
and --input-invalid-color
variables respectively. - Universal margin for elements can be changed globally by changing the value of the
--universal-margin
variable. As a rule of thumb, consider the universal margin to be the distance you want your paragraphs to have from the sides of the screen. - Universal padding for elements can be changed globally by changing the value of the
--universal-padding
variable. - Universal border radius for elements can be changed globally by changing the value of the
--universal-border-radius
variable.
diff --git a/docs/flavorFiles/mini-dark.css b/docs/flavorFiles/mini-dark.css
index d9840e1..30cae88 100644
--- a/docs/flavorFiles/mini-dark.css
+++ b/docs/flavorFiles/mini-dark.css
@@ -3,7 +3,7 @@
Flavor name: Dark (mini-dark)
Author: Angelos Chalaris (chalarangelo@gmail.com)
Maintainers: Angelos Chalaris
- mini.css version: v3.0.0
+ mini.css version: v3.0.1
*/
/*
Browsers resets and base typography.
diff --git a/docs/flavorFiles/mini-default.css b/docs/flavorFiles/mini-default.css
index 14f2de8..92d241a 100644
--- a/docs/flavorFiles/mini-default.css
+++ b/docs/flavorFiles/mini-default.css
@@ -3,7 +3,7 @@
Flavor name: Default (mini-default)
Author: Angelos Chalaris (chalarangelo@gmail.com)
Maintainers: Angelos Chalaris
- mini.css version: v3.0.0-alpha.3
+ mini.css version: v3.0.1
*/
/*
Browsers resets and base typography.
diff --git a/docs/flavorFiles/mini-nord.css b/docs/flavorFiles/mini-nord.css
index 41506ff..518364b 100644
--- a/docs/flavorFiles/mini-nord.css
+++ b/docs/flavorFiles/mini-nord.css
@@ -3,7 +3,7 @@
Flavor name: Nord (mini-nord)
Author: tphecca (https://github.com/tphecca)
Maintainers: tphecca
- mini.css version: v3.0.0
+ mini.css version: v3.0.1
*/
/*
Browsers resets and base typography.
diff --git a/docs/index.html b/docs/index.html
index 09b526a..933356b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -60,4 +60,4 @@