123456789101112131415161718192021222324252627282930 |
- body {
- padding-top: 70px;
- }
-
- footer {
- margin: 50px 0;
- }
-
- .text-center() {
- text-align: center;
- }
-
- .border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
- }
-
- .no-text-select {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
-
- /**
- ========================================================
- **/
|