1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-08-25 23:06:19 +02:00

Minor color update

This commit is contained in:
Angelos Chalaris
2016-12-07 10:05:19 +02:00
parent b829066a2d
commit 365bde4392
5 changed files with 25 additions and 24 deletions

View File

@@ -615,3 +615,4 @@
## 20161207
- Documented `radio` and `checkbox` in the `input_control` doc page.
- Tweaked all references of `$back-color` to now use `#fafafa` instead of the previous `#f5f5f5`. This will make contrast better and allow for better visibility of certain pieces of text.

View File

@@ -197,9 +197,9 @@
<button disabled>Disabled button</button><br>
<p>Button groups can also be created, utilising the <code>.button-group</code> class. Simply add a set of buttons in it and you're good to go. Check it out below:</p>
<div class="button-group">
<input type="button" value="Input button">
<input type="submit" value="Submit button">
<input type="reset" value="Reset button">
<input type="button" value="Input button" class="secondary">
<input type="submit" value="Submit button" class="primary">
<input type="reset" value="Reset button" class="inverse">
<button>Normal button</button>
<a href="#" class="button">Link button</a>
</div>