Добрый день!
Помогите, пожалуйста, изменить цвет кнопок с помощью кода. Нужно сделать темно-серыми. Почему-то, если меняю на другой файл svg, кнопка пропадает(
.go-up, .go-down {
display: none;
position: fixed;
margin-left: 1120px !important;
z-index: 9999;
cursor: pointer;
opacity: 1;
margin-bottom: 40px !important;
width: 50px;
height: 25px;
-webkit-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.go-up:hover, .go-down:hover {
opacity: 0.5;
-webkit-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.go-up {
bottom: 335px;
background: url(http://forumstatic.ru/files/001b/7a/c4/43192.svg) no-repeat, url(http://forumstatic.ru/files/001b/7a/c4/43192.svg) no-repeat;
}
.go-down {
bottom: 280px;
background: url(http://forumstatic.ru/files/001b/7a/c4/93580.svg) no-repeat, url(http://forumstatic.ru/files/001b/7a/c4/93580.svg) no-repeat;
}








