aboutsummaryrefslogtreecommitdiffhomepage
path: root/resources/assets/sass/app.scss
blob: ad830439821ea45b49edae75921f4efb4509ed61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Fonts
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
// Variables
@import "variables";
// Bootstrap
@import "~bootstrap/scss/bootstrap";
// Chat
@import "chat";

.navbar-laravel {
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.navbar.fixed-bottom {
    width: 100%;
    background-color: #555;
    overflow: auto;
}

.navbar.fixed-bottom .navbar-icon {
    float: left;
    width: 20%;
    text-align: center;
    padding: 12px 0;
    transition: all 0.3s ease;
    color: white;
    font-size: 36px;
}

.navbar.fixed-bottom a:hover {
    background-color: #000;
}

.active {
    background-color: #4CAF50 !important;
}

.alert {
    display: none;
}