Example:
.circle { border: 2px dashed red; /* CHANGE BORDER */ }
Example:
.circle text { font-size: 18px; /* CHANGE FONT SIZE */ }
Example:
.circle text { fill: yellow; /* CHANGE FONT COLOR */ }
Example:
.circle text { animation: rotate-btn 30s linear infinite; /* CHANGE ROTATION SPEED */ }
Example:
.circle text { letter-spacing: 2px; /* ADJUST LETTER SPACING */ }
Notice: The minus sign in front of 360 determines the rotation direction. Removing the minus sign changes the rotation direction.
Example: Rotate left
@keyframes rotate-btn { to { transform: rotate(360deg); } }ย
Example: Rotate right
@keyframes rotate-btn { to { transform: rotate(-360deg); } }ย
Center the Widget
justify-content: center; /* SET POSITION: LEFT, CENTER, RIGHT */
Align the Widget to the Left:
justify-content: left; /* SET POSITION: LEFT, CENTER, RIGHT */
Align the Widget to the Right:
justify-content: right; /* SET POSITION: LEFT, CENTER, RIGHT */