Browsing index pages (3 articles)
↧
How to create play button with border-radius?
Hi I'm trying to make a Pomodoro clock. I've made a play button by removing border-right and increasing border-left width to create a triangle. My questions is - how do I apply border-radius to...
View ArticleAnswer by Ylama for How to create play button with border-radius?
HTML play button: .circle_inner{ position: relative; height: 100%;}.circle_inner:before{ content: ""; display: block; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 20px;...
View ArticleAnswer by Alexandr for How to create play button with border-radius?
Try this (Less)<div class="control play"><span class="left"></span><span class="right"></span></div>.control { @color: #ffb160; @highlight: darken(@color, 10%);...
View Article
Browsing index pages (3 articles)