﻿/*
    Plik do edycji stylow bootstrap.
*/
/*This is modifying the btn-primary colors but you could create your own .btn-something class as well*/
.btn-outline-primary {
    color: #b6ff00 !important;
    background-color: #0495c9;
    border-color: #357ebd; /*set the color you want here*/
}

    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .open > .dropdown-toggle.btn-outline-primary, .btn-outline-primary:active:focus {
        color: #b6ff00 !important;
        background-color: #00b3db;
        border-color: #285e8e; /*set the color you want here*/
    }
/* Zeby btn-link wygladal jak link, czyli zeby byl button  bez marginow itp.*/
.btn-link-plain {
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: baseline;
}