]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/menu/menu.component.scss
Handle blacklist (#84)
[github/Chocobozzz/PeerTube.git] / client / src / app / core / menu / menu.component.scss
CommitLineData
383bfc83
C
1menu {
2 background-color: $black-background;
3eeeb87f 3 padding: 15px;
383bfc83
C
4 margin: 0;
5 height: 100%;
3eeeb87f
C
6 white-space: nowrap;
7 text-overflow: ellipsis;
8 overflow: hidden;
9
10 @media screen and (max-width: 550px) {
11 font-size: 90%;
12 }
13
14 @media screen and (min-width: 1200px) {
15 padding: 25px;
16 }
383bfc83 17
6562f1f7
C
18 .panel-block {
19 margin-bottom: 15px;
20 }
21
22 .block-title {
23 text-transform: uppercase;
24 font-weight: bold;
25 color: $menu-color-block;
26 margin-bottom: 10px;
27 }
28
383bfc83
C
29 a {
30 display: block;
6562f1f7 31 margin-left: 5px;
383bfc83 32 height: 30px;
6562f1f7 33 color: $menu-color-link;
383bfc83 34 cursor: pointer;
09223546 35 transition: color 0.3s;
383bfc83
C
36
37 &:hover, &:focus {
38 text-decoration: none !important;
39 outline: none !important;
40 }
41
42 .glyphicon {
6562f1f7 43 margin-right: 15px;
383bfc83
C
44 }
45
46 &:hover, &.active {
47 color: #fff;
48 }
49 }
50}