aboutsummaryrefslogtreecommitdiff
path: root/src/public/scss/general.scss
blob: cbbc65482f2c53c576dbe01a846fbab0505084e7 (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
43
44
.general {

    header, main, footer {
      padding-left: 300px;
    }

    header .brand-logo {
      padding-left: 15px;
    }

    @media only screen and (max-width : 992px) {
      header, main, footer {
        padding-left: 0;
      }
    }

    .user-view {
      margin-top: 5px;
      height: 150px;
    }

    .user-view .background {
      margin-left: 85px;
    }

    .log-table {




    }

    @keyframes highlightNew {
      0%   {background-color:#ffc107;}
      100% {background-color:white;}
    }

    .newLogEntry {
      -webkit-animation-name: highlightNew; /* Safari 4.0 - 8.0 */
      -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
      animation-name: highlightNew;
      animation-duration: 4s;
    }
}