Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunesimonsen/less-border-layout
An example showing how to do
https://github.com/sunesimonsen/less-border-layout
Last synced: about 1 month ago
JSON representation
An example showing how to do
- Host: GitHub
- URL: https://github.com/sunesimonsen/less-border-layout
- Owner: sunesimonsen
- Created: 2012-09-25T20:16:02.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-14T13:49:00.000Z (about 10 years ago)
- Last Synced: 2024-10-08T23:19:50.937Z (about 1 month ago)
- Language: CSS
- Size: 1.58 MB
- Stars: 7
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Less border layout
LessCSS mixins for doing border layouts in web-pages.
Install:
npm install less-border-layout
## Less border layout example
This example shows how to do border layouts using Less mixins.
![Border layout](https://raw.github.com/sunesimonsen/less-border-layout/master/examples/images/border-layout.png)
You can see the example [here](http://sunesimonsen.github.io/less-border-layout/examples/).
index.html:
``` html
```Style.less:
@import "../layouts.less";
@import "../border-layout.less";.layout.main {
min-width: 600px;
min-height: 400px;.border-layout-top(100px);
.border-layout-left(150px);
.border-layout-right(200px);
.border-layout-bottom(50px);.content {
.border-layout-top(40px);
.border-layout-right(60px);
}
}## Advanced example
[Click here to open the advanced example](http://sunesimonsen.github.com/less-border-layout/examples/advanced.html "Advanced example")
## License: BSD-3-Clause
Copyright (c) 2013, Sune Simonsen
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3) Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.