documentation/_extensions/odoo/static/bootstrap-3.3.6/less/mixins/center-block.less
stefanorigano 28f197ca71 [IMP] all: new design to match the one on odoo.com
* upgrade to bootstrap 3.3.6

* new Header, port website LESS
  - Add the new header
  - Modify sub-header in order to handle “back” button and version
    switcher
  - Port website’s Less:
    * Use same variables’ names
    * Review fonts and colours in order to fit the new style

* add new footer

* Review and optimise JS code in order properly handle the new header,
  footer and card.top animations

* replace  banner images
2016-04-26 11:23:38 +02:00

8 lines
120 B
Plaintext
Executable File

// Center-align a block level element
.center-block() {
display: block;
margin-left: auto;
margin-right: auto;
}