Commit f178ccd290195789210b8f1869c265a4c4451d5d
1 parent
915f0cc5
tokar commit
Showing
1 changed file
with
19 additions
and
0 deletions
Show diff stats
frontend/web/css/style.css
... | ... | @@ -153,8 +153,27 @@ ul.header-contacts-menu li:last-child a { |
153 | 153 | font-size: 13px; |
154 | 154 | transition: 0.3s; |
155 | 155 | margin-left: 14px; |
156 | + width: 102px; | |
157 | + overflow: hidden; | |
158 | + position: relative; | |
159 | + height: 15px; | |
160 | + white-space: nowrap; | |
156 | 161 | } |
157 | 162 | .header-cabinet-wr a:hover{opacity: 0.9} |
163 | +.header-cabinet-wr a:before{ | |
164 | + content: ''; | |
165 | + height: 15px; | |
166 | + width: 15px; | |
167 | + background: #fff; | |
168 | + opacity: 0.5; | |
169 | + position: absolute; | |
170 | + top: 0; | |
171 | + right: 0; | |
172 | + background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); | |
173 | + background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); | |
174 | + background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); | |
175 | + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); | |
176 | +} | |
158 | 177 | ul.main-menu { |
159 | 178 | width: 620px; |
160 | 179 | float: left; | ... | ... |