﻿/*
 * Callouts
 *
 * Not quite alerts, but custom and helpful notes for folks reading the docs.
 * Requires a base and modifier class.
 */

/* Common styles for all types */
.bs-callout {
    margin: 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
}

    .bs-callout h4 {
        margin-top: 0;
    }

    .bs-callout p:last-child {
        margin-bottom: 0;
    }

    .bs-callout code,
    .bs-callout .highlight {
        background-color: #fff;
    }

/* Variations */
.bs-callout-danger {
    background-color: #fcf2f2;
    border-color: #dFb5b4;
}

.bs-callout-warning {
    background-color: #fefbed;
    border-color: #f1e7bc;
}

.bs-callout-info {
    background-color: #f0f7fd;
    border-color: #d0e3f0;
}

/* comments */
span.comment {
    font-family: Verdana, 'Comic Sans MS';
    color: navy;
    font-size: larger;
}


body {
    padding-top: 51px;
    margin: 20px;
}


.red {
    color: red;
}

.gray {
    color: gray;
}

.warning {
    color: orange;
}

.green {
    color: forestgreen;
}

.smaller {
    font-size: smaller;
}

/* round corner around text especially for keyboard character boxing */
.keyboard-key, .screen-button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    padding: 1px;
}

.screen-button {
    background-color: rgb(66, 139, 202); /* rgb(50, 118, 177); */
    font-size: smaller;
    border-color: rgb(40, 94, 142);
    color: white;
    padding: 2px;
}

/* tabs */
.tab-content {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.nav-tabs {
    margin-bottom: -1px;
}


/* sb-admin */
/* Nav Announcements */

.announcement-heading {
    font-size: 42px;
    margin: 0;
}

.announcement-text {
    margin: 0;
}

.glyphicon-5x {
    font-size: 80px;
}

/* dashboard */
.tile-progress {
    background-color: #303641;
    color: #fff;
}

.tile-footer a, .tile-footer a:hover, .tile-footer a:active, .tile-footer a:visited,
.tile-header a, .tile-header a:hover, .tile-header a:active, .tile-header a:visited {
    color: white;
}

.tile-progress {
    background: #00a65b;
    color: #fff;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .tile-progress .tile-header {
        padding: 15px 20px;
        padding-bottom: 40px;
    }

    .tile-progress .tile-progressbar {
        height: 2px;
        background: rgba(0,0,0,0.18);
        margin: 0;
    }

        .tile-progress .tile-progressbar span {
            background: #fff;
        }

        .tile-progress .tile-progressbar span {
            display: block;
            background: #fff;
            width: 0;
            height: 100%;
            -webkit-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
            -moz-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
            -o-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
            transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
        }

    .tile-progress .tile-footer {
        padding: 20px;
        text-align: right;
        background: rgba(0,0,0,0.1);
        -webkit-border-radius: 0 0 3px 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 0 3px 3px;
        -moz-background-clip: padding;
        border-radius: 0 0 3px 3px;
        background-clip: padding-box;
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
    }

    .tile-progress.tile-red {
        background-color: #f56954;
        color: #fff;
    }

.tile-progress {
    background-color: #303641;
    color: #fff;
}

    .tile-progress.tile-blue {
        background-color: #0073b7;
        color: #fff;
    }

    .tile-progress.tile-aqua {
        background-color: #00c0ef;
        color: #fff;
    }

    .tile-progress.tile-green {
        background-color: #00a65a;
        color: #fff;
    }

    .tile-progress.tile-cyan {
        background-color: #00b29e;
        color: #fff;
    }

    .tile-progress.tile-purple {
        background-color: #ba79cb;
        color: #fff;
    }

    .tile-progress.tile-pink {
        background-color: #ec3b83;
        color: #fff;
    }


/* dropdown submenus */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }

#panel-with-dropdown {
    overflow: visible;
}


del.diffmod {
    color: red;
    background-color: rgba(255, 146, 146, 0.5);
    padding-left: 4px;
    padding-right: 4px;
}

ins.diffmod {
    color: blue;
    text-decoration: none;
    padding-left: 4px;
    padding-right: 4px;
    background-color: rgba(66, 139, 202, 0.42);
}

ins.diffins {
    background-color: rgba(76, 255, 0, 0.51);
    color: black;
    padding-left: 4px;
    padding-right: 4px;
}

/* wizard */
.nav-wizard > li {
    float: left;
}

    .nav-wizard > li > a {
        position: relative;
        background-color: #eeeeee;
    }

        .nav-wizard > li > a .badge {
            margin-left: 3px;
            color: #eeeeee;
            background-color: #428bca;
        }

    .nav-wizard > li:not(:first-child) > a {
        padding-left: 34px;
    }

        .nav-wizard > li:not(:first-child) > a:before {
            width: 0px;
            height: 0px;
            border-top: 20px inset transparent;
            border-bottom: 20px inset transparent;
            border-left: 20px solid #ffffff;
            position: absolute;
            content: "";
            top: 0;
            left: 0;
        }

    .nav-wizard > li:not(:last-child) > a {
        margin-right: 6px;
    }

        .nav-wizard > li:not(:last-child) > a:after {
            width: 0px;
            height: 0px;
            border-top: 20px inset transparent;
            border-bottom: 20px inset transparent;
            border-left: 20px solid #eeeeee;
            position: absolute;
            content: "";
            top: 0;
            right: -20px;
            z-index: 2;
        }

    .nav-wizard > li:first-child > a {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .nav-wizard > li:last-child > a {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .nav-wizard > li.done:hover > a,
    .nav-wizard > li:hover > a {
        background-color: #d5d5d5;
    }

        .nav-wizard > li.done:hover > a:before,
        .nav-wizard > li:hover > a:before {
            border-right-color: #d5d5d5;
        }

        .nav-wizard > li.done:hover > a:after,
        .nav-wizard > li:hover > a:after {
            border-left-color: #d5d5d5;
        }

    .nav-wizard > li.done > a {
        background-color: #e2e2e2;
    }

        .nav-wizard > li.done > a:before {
            border-right-color: #e2e2e2;
        }

        .nav-wizard > li.done > a:after {
            border-left-color: #e2e2e2;
        }

    .nav-wizard > li.active > a,
    .nav-wizard > li.active > a:hover,
    .nav-wizard > li.active > a:focus {
        color: #ffffff;
        background-color: #428bca;
    }

        .nav-wizard > li.active > a:after {
            border-left-color: #428bca;
        }

        .nav-wizard > li.active > a .badge {
            color: #428bca;
            background-color: #ffffff;
        }

    .nav-wizard > li.disabled > a {
        color: #777777;
    }

        .nav-wizard > li.disabled > a:hover,
        .nav-wizard > li.disabled > a:focus {
            color: #777777;
            text-decoration: none;
            background-color: #eeeeee;
            cursor: default;
        }

        .nav-wizard > li.disabled > a:before {
            border-right-color: #eeeeee;
        }

        .nav-wizard > li.disabled > a:after {
            border-left-color: #eeeeee;
        }

.nav-wizard.nav-justified > li {
    float: none;
}

    .nav-wizard.nav-justified > li > a {
        padding: 10px 15px;
    }

@media (max-width: 768px) {
    .nav-wizard.nav-justified > li > a {
        border-radius: 4px;
        margin-right: 0;
    }

        .nav-wizard.nav-justified > li > a:before,
        .nav-wizard.nav-justified > li > a:after {
            border: none !important;
        }
}

/* /wizard */
