Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_layout.less « stylesheets « PleineLune « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfb3b8337c56861ebc99597ebab4d8e98178c510 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.pageWrap {
  border-width: 0;
  padding-left: 0;
  padding-right: 0;
}

/* TOB BARS */
#topBars {
  font-size: 14px;
}

#topRightBar,
#topLeftBar {
  float: none;
  text-align: right;
}

#topLeftBar {
  display: table-row;
}

#topRightBar {
  display: table-header-group;
  margin-bottom: 5px;
}

#topRightBar .topBarElem {
   margin-bottom: 5px;
}

.topBarElemActive {
  color: @theme-color-text-active;
}

.topBarElemActive > b {
  font-weight: normal;
}

/* Logo */
#logo {
  opacity: 0.5;
}

#header:hover #logo {
  opacity: 1;
}

@media all and (max-width: 949px) {
  #logo {
    float: none;
    display: block;
    text-align: center
  }

  #topBars {
    float: none;
    display: table;
    width: 100%;
  }

  #topRightBar,
  #topLeftBar {
    text-align: center;
  }
}

@media all and (min-width: 1250px) {
  #logo img {
    height: 80px;
  }

  #header:after {
    clear: right;
  }
}