task/1.10
Raw Download raw file
 1<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
 2    <!-- Background circle -->
 3    <circle cx="16" cy="18" r="12" fill="#2c3e50" stroke="#34495e" stroke-width="1"/>
 4    
 5    <!-- Timer winding key -->
 6    <rect x="13" y="2" width="6" height="3" rx="1" fill="#2c3e50"/>
 7    <rect x="14.5" y="4" width="3" height="2" rx="0.5" fill="#2c3e50"/>
 8    
 9    <!-- Clock face -->
10    <circle cx="16" cy="18" r="10" fill="white" stroke="#2c3e50" stroke-width="1.5"/>
11    
12    <!-- Hour markers -->
13    <line x1="16" y1="9" x2="16" y2="11" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
14    <line x1="25" y1="18" x2="23" y2="18" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
15    <line x1="16" y1="27" x2="16" y2="25" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
16    <line x1="7" y1="18" x2="9" y2="18" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
17    
18    <!-- Clock hands showing approximately 10:10 -->
19    <!-- Hour hand pointing to 10 -->
20    <line x1="16" y1="18" x2="12" y2="14" stroke="#e74c3c" stroke-width="2.5" stroke-linecap="round"/>
21    <!-- Minute hand pointing to 2 -->
22    <line x1="16" y1="18" x2="20" y2="12" stroke="#e74c3c" stroke-width="2" stroke-linecap="round"/>
23    
24    <!-- Center dot -->
25    <circle cx="16" cy="18" r="1.5" fill="#e74c3c"/>
26</svg>