aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/header.scss
blob: eeed9ee061721c106d1ed9a3d47fb279661ca5b7 (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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.app-header {
  align-items: center;
  visibility: visible;
  background: $gallery;
  position: relative;
  z-index: $header-z-index;
  display: flex;
  flex-flow: column nowrap;

  @media screen and (max-width: 575px) {
    padding: 12px;
    width: 100%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
    z-index: $mobile-header-z-index;
  }

  @media screen and (min-width: 576px) {
    height: 75px;
    justify-content: center;
  }

  .metafox-icon {
    cursor: pointer;
  }
}

.app-header--initialized {

  @media screen and (min-width: 576px) {
    &::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 32px;
      background: $gallery;
      bottom: -32px;
    }
  }
}

.app-header-contents {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  width: 100%;
  height: 6.9vh;

  @media screen and (max-width: 575px) {
    height: 100%;
  }

  @media screen and (min-width: 576px) {
    width: 85vw;
  }

  @media screen and (min-width: 769px) {
    width: 80vw;
  }

  @media screen and (min-width: 1281px) {
    width: 62vw;
  }
}

.app-header h1 {
  font-family: Roboto;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  padding-left: 15px;
  color: #5b5d67;

  @media screen and (max-width: 575px) {
    display: none;
  }
}

.beta-label {
  font-family: Roboto;
  text-transform: uppercase;
  font-weight: 500;
  font-size: .8rem;
  color: $buttercup;
  margin-left: 5px;
  line-height: initial;

  @media screen and (max-width: 575px) {
    display: none;
  }
}

h2.page-subtitle {
  text-transform: uppercase;
  color: #aeaeae;
  font-size: 1em;
  margin: 12px;
}

.network-component-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.left-menu-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.header__right-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;

  .identicon {
    cursor: pointer;
  }
}