Blame view

backend/web/core/css/add-new.scss 2.28 KB
c237629a   Anastasia   first commit
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
  $colorHeader: #652e8f;
  .new-ico-user {
    b {
      width: 30px;
      height: 30px;
      background: $colorHeader;
      border-radius: 100%;
      font-style: normal;
      font-weight: normal;
      color: #fff;
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      text-align: center;
      line-height: 30px;
      float: left;
    }
    i {
      font-style: normal;
      float: left;
      color: #777b80;
      font-size: 12px !important;
      line-height: 30px;
      margin-left: 10px;
      &:first-letter {
        text-transform: uppercase;
      }
  
    }
  }
  
  
  @font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?cekg2c');
    src: url('../fonts/icomoon.eot?cekg2c#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?cekg2c') format('truetype'),
    url('../fonts/icomoon.woff?cekg2c') format('woff'),
    url('../fonts/icomoon.svg?cekg2c#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  @mixin svgIcon {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .site_title {
    span {
      display: none;
    }
    &:before {
      @include svgIcon;
      font-size: 36px;
      color: #fff;
      content: '\e90a';
      //content: '\e900';
      line-height: 55px;
    }
  }
  
  .main_menu {
  
    b {
      color: #7c7c7c;
      width: 58px;
      display: inline-block;
      text-align: center;
      &:before {
        @include svgIcon;
        font-size: 18px;
        color: #7c7c7c;
      }
    }
  
    .side-menu {
      .active {
        b {
          &:before {
            color: #fff;
          }
        }
      }
    }
  }
  
  b {
    &.site {
      &:before {
        content: '\e900';
      }
    }
  
    &.home {
      &:before {
        content: '\e901';
      }
    }
  
    &.static {
      &:before {
        content: '\e902';
      }
    }
  
    &.seo {
      &:before {
        content: '\e903';
      }
    }
  
    &.catalog {
      &:before {
        content: '\e904';
      }
    }
  
    &.options {
      &:before {
        content: '\e905';
      }
    }
  
    &.order {
      &:before {
        content: '\e906';
      }
    }
  
    &.blog {
      &:before {
        content: '\e907';
      }
    }
  
    &.settings {
      &:before {
        content: '\e908';
      }
    }
  
    &.slider {
      &:before {
        content: '\e909';
      }
    }
  }