blob: 81725fa16441d6863c1843d41f737a2b52ff72c9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
// fonts
@font-sans-serif: "Roboto", "Helvetica Neue", Arial, sans-serif;
// colors
@brand-color: #0050b2;
// text colors
@text-color: #333;
@link-color: @brand-color;
@link-hover: #0973f5;
@link-visited: #AF09AF; //used for toc
// headers
@header-color: @brand-color;
@text-warning: #f54927;
// borders
@border-gray: #eee;
// bgs
@bg-gray: #f9f9f9;
// gutter
@gutter-width: 24px;
// breakpoints
@screen-xs-min: 568px;
@screen-sm-min: 768px;
@screen-md-min: 992px;
@screen-lg-min: 1200px;
@screen-base-max: (@screen-xs-min - 1);
@screen-xs-max: (@screen-sm-min - 1);
@screen-sm-max: (@screen-md-min - 1);
@screen-md-max: (@screen-lg-min - 1);
// container widths
@container-sm: @screen-sm-min - (@gutter-width * 2) - 20px; // subtract for scrollbar
@container-md: @screen-md-min - (@gutter-width * 2) - 20px; // subtract for scrollbar
@container-lg: @screen-lg-min - (@gutter-width * 2) - 20px; // subtract for scrollbar