I want my buttons showing left- and right arrow and NOW text to be as small as possible. How do I do that?
You could use css transform: scale(). You have to play with margins a little bit, but it isn't much code and you can go smaller or bigger pretty easily.
transform: scale()
.shrink-2x { transform: scale(0.5); } .enlarge-2x { transform: scale(1.5); }
Example