Skip to content

Commit

Permalink
delete Useful Links and update Readme, fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
pytkin committed May 20, 2013
1 parent 2b796ad commit 17bfbdd
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 35 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,32 @@ Thanks for supporting our website and enjoy!

## Typeface
Flat UI Free is made using the Lato typeface, which can be downloaded for free here: http://www.google.com/webfonts/specimen/Lato

##Useful Links (How To)
How to Use UI Kits, Beginners Video Tips: [http://designmodo.com/how-to-use/](http://designmodo.com/how-to-use/)
UI Kit Benefits: [http://designmodo.com/benefits/](http://designmodo.com/benefits/)
Create a Website using UI Packs (PSD to HTML) – Day 1: [http://designmodo.com/create-website-day-1](http://designmodo.com/create-website-day-1)
Create a Website using UI Packs (PSD to HTML) – Day 2: [http://designmodo.com/create-website-day-2](http://designmodo.com/create-website-day-2)
Create a Website using UI Packs (PSD to HTML) – Day 3: [http://designmodo.com/create-website-day-3](http://designmodo.com/create-website-day-3)
Create a Website Design using The Bricks UI: [http://designmodo.com/website-design-bricks-ui/](http://designmodo.com/website-design-bricks-ui/)
What is UI Kit and Why You Should Use it: [http://designmodo.com/ui-kit-use](http://designmodo.com/ui-kit-use)
How Companies can Save Time and Money Using UI Kits: [http://designmodo.com/save-time-money-using-ui-kits](http://designmodo.com/save-time-money-using-ui-kits)
UI Kits for Developers – Prototyping and Homemade Design: [http://designmodo.com/ui-kits-developers](http://designmodo.com/ui-kits-developers)

Our Shop:
[http://designmodo.com/shop/](http://designmodo.com/shop/)

Tutorials:
[http://designmodo.com/tutorials/](http://designmodo.com/tutorials/)

Freebies:
[http://designmodo.com/freebies/](http://designmodo.com/freebies/)

Affiliate Program (earn money):
[http://designmodo.com/affiliates/](http://designmodo.com/affiliates/)

Social Media:
Twitter: [http://www.twitter.com/designmodo](http://www.twitter.com/designmodo)
Facebook: [http://www.facebook.com/designmodo](http://www.facebook.com/designmodo)
RSS: [http://feeds.feedburner.com/designmodo](http://feeds.feedburner.com/designmodo)
Google+: [https://www.google.com/+DesignModo](https://www.google.com/+DesignModo)
30 changes: 0 additions & 30 deletions Useful Links! (How To)

This file was deleted.

27 changes: 25 additions & 2 deletions css/flat-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -1325,6 +1325,25 @@ input[type="color"]:focus,
-moz-box-shadow: none;
box-shadow: none;
}
.row-fluid textarea,
.row-fluid input[type="text"],
.row-fluid input[type="password"],
.row-fluid input[type="datetime"],
.row-fluid input[type="datetime-local"],
.row-fluid input[type="date"],
.row-fluid input[type="month"],
.row-fluid input[type="time"],
.row-fluid input[type="week"],
.row-fluid input[type="number"],
.row-fluid input[type="email"],
.row-fluid input[type="url"],
.row-fluid input[type="search"],
.row-fluid input[type="tel"],
.row-fluid input[type="color"],
.row-fluid .uneditable-input {
height: 41px;
width: 100%;
}
textarea.flat,
input[type="text"].flat,
input[type="password"].flat,
Expand Down Expand Up @@ -1639,8 +1658,12 @@ textarea {
padding: 5px 11px;
text-indent: 0;
}
.row-fluid textarea {
height: auto;
width: 100% !important;
}
textarea[class*="span"] {
width: 100%;
width: 100% !important;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
Expand Down Expand Up @@ -3233,7 +3256,7 @@ body.vjs-full-window {
.vjs-rewind-control div {
width: 19px;
height: 16px;
background: url(../images/video/video-js.png);
background: none transparent;
margin: .5em auto 0;
}
.vjs-mute-control {
Expand Down
2 changes: 1 addition & 1 deletion js/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ String.prototype.repeat = function(num) {
});

// Disable link clicks to prevent page scrolling
$('a[href="#fakelink""]').on('click', function (e) {
$('a[href="#fakelink"]').on('click', function (e) {
e.preventDefault();
});

Expand Down
12 changes: 11 additions & 1 deletion less/modules/input.less
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ input[type="color"],
border-color: @firm;
.box-shadow(none);
}

.row-fluid & {
height: 41px;
width: 100%;
}

// Flat (without border)
&.flat {
Expand Down Expand Up @@ -158,8 +163,13 @@ textarea {
line-height: 24px;
padding: 5px 11px;
text-indent: 0;

.row-fluid & {
height: auto;
width: 100% !important;
}
}
textarea[class*="span"] {
width: 100%;
width: 100% !important;
.box-sizing(border-box);
}
2 changes: 1 addition & 1 deletion less/modules/video.less
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ body.vjs-full-window {
div {
width: 19px;
height: 16px;
background: url(../images/video/video-js.png);
background: none transparent;
margin: .5em auto 0;
}
}
Expand Down

0 comments on commit 17bfbdd

Please sign in to comment.