Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
- thijsvandongenParticipant
You can do a replace for all #EE3B24 in the css.style.
But I use a variable in the beginning of the style.css and use that variable for all the places were #EE3B24 was used.Next time I only have to change the color on 1 place in the style.css.
So set the variable –main-color
:root {
–main-color: rgb(80, 177, 56);
}
en dan overal
input[type=”submit”] {
background: var(–main-color);
padding: 0 20px;
color: #FFF;
border: 0;
line-height: 46px;
height: 46px;
}
- AuthorPosts
Viewing 1 post (of 1 total)