12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // Variables
- @import 'variables';
- // Bootstrap
- @import '~bootstrap/scss/bootstrap';
- /* universal */
- body {
- font-family: Hiragino Sans GB, "Hiragino Sans GB", Helvetica, "Microsoft YaHei", Arial, sans-serif;
- font-size: 14px;
- }
- /* header */
- .navbar-static-top {
- border-color: #e7e7e7;
- background-color: #fff;
- box-shadow: 0px 1px 11px 2px rgba(42, 42, 42, 0.1);
- border-top: 4px solid #00b5ad;
- border-bottom: 1px solid #e8e8e8;
- margin-bottom: 40px;
- margin-top: 0px;
- }
- /* Sticky footer styles */
- html {
- position: relative;
- min-height: 100%;
- }
- body {
- /* Margin bottom by footer height */
- margin-bottom: 60px;
- }
- .footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- /* Set the fixed height of the footer here */
- height: 60px;
- background-color: #000;
- .container {
- padding-right: 15px;
- padding-left: 15px;
- p {
- margin: 19px 0;
- color: #c1c1c1;
- a {
- color: inherit;
- }
- }
- }
- }
|