<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to design a circle widgets in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2506524#M976904</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/522702"&gt;@Stiphilan10&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Circle Design for the widget, please refer to HTML and CSS code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div style="text-align:center"&amp;gt;
  &amp;lt;h1&amp;gt;Round Dots / Circles&amp;lt;/h1&amp;gt;
  &amp;lt;span class="dot red"&amp;gt;
  	&amp;lt;span class="circleNo"&amp;gt;10&amp;lt;/span&amp;gt; 
  	&amp;lt;span class="text"&amp;gt;All Records&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
    &amp;lt;span class="circleNo"&amp;gt;20&amp;lt;/span&amp;gt;
    &amp;lt;span class="text"&amp;gt;Incident&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
    &amp;lt;span class="circleNo"&amp;gt;30&amp;lt;/span&amp;gt;
    &amp;lt;span class="text"&amp;gt;Problem&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
  &amp;lt;span class="circleNo"&amp;gt;40&amp;lt;/span&amp;gt;
  &amp;lt;span class="text"&amp;gt;Change&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CSS&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.dot {
  height: 100px;
  width: 100px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  text-align:center
}
 .red{
  background-color: #ff0000;
}
.circleNo{
    position: relative;
    top: 35px;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}
span.text {
  position: absolute;
  top: 195px;
  display: block;
  margin-left: 25px;
  
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SonaliNimbalk1_0-1678878067484.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/247492iF62A175D3C3585D2/image-dimensions/793x472?v=v2" alt="SonaliNimbalk1_0-1678878067484.png" title="SonaliNimbalk1_0-1678878067484.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please hit like and mark my response as correct if that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Sonali Nimbalka&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Mar 2023 11:02:15 GMT</pubDate>
    <dc:creator>Sonali Nimbalk1</dc:creator>
    <dc:date>2023-03-15T11:02:15Z</dc:date>
    <item>
      <title>How to design a circle widgets</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2504621#M976226</link>
      <description>&lt;P&gt;could some help me to achieve this task? I dont know how to design this kind of design.&lt;/P&gt;&lt;P&gt;Reference: I need to design like the red colour circle widgets.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IMG_1384.jpg"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/246979i46FEF16C4429523D/image-size/large?v=v2&amp;amp;px=999" alt="IMG_1384.jpg" title="IMG_1384.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm attaching the model screen shot below.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 06:26:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2504621#M976226</guid>
      <dc:creator>Stiphilan10</dc:creator>
      <dc:date>2023-03-14T06:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a circle widgets</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2506524#M976904</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/522702"&gt;@Stiphilan10&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Circle Design for the widget, please refer to HTML and CSS code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div style="text-align:center"&amp;gt;
  &amp;lt;h1&amp;gt;Round Dots / Circles&amp;lt;/h1&amp;gt;
  &amp;lt;span class="dot red"&amp;gt;
  	&amp;lt;span class="circleNo"&amp;gt;10&amp;lt;/span&amp;gt; 
  	&amp;lt;span class="text"&amp;gt;All Records&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
    &amp;lt;span class="circleNo"&amp;gt;20&amp;lt;/span&amp;gt;
    &amp;lt;span class="text"&amp;gt;Incident&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
    &amp;lt;span class="circleNo"&amp;gt;30&amp;lt;/span&amp;gt;
    &amp;lt;span class="text"&amp;gt;Problem&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
  &amp;lt;span class="dot"&amp;gt;
  &amp;lt;span class="circleNo"&amp;gt;40&amp;lt;/span&amp;gt;
  &amp;lt;span class="text"&amp;gt;Change&amp;lt;/span&amp;gt;
  &amp;lt;/span&amp;gt;
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CSS&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.dot {
  height: 100px;
  width: 100px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  text-align:center
}
 .red{
  background-color: #ff0000;
}
.circleNo{
    position: relative;
    top: 35px;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}
span.text {
  position: absolute;
  top: 195px;
  display: block;
  margin-left: 25px;
  
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SonaliNimbalk1_0-1678878067484.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/247492iF62A175D3C3585D2/image-dimensions/793x472?v=v2" alt="SonaliNimbalk1_0-1678878067484.png" title="SonaliNimbalk1_0-1678878067484.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please hit like and mark my response as correct if that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Sonali Nimbalka&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 11:02:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2506524#M976904</guid>
      <dc:creator>Sonali Nimbalk1</dc:creator>
      <dc:date>2023-03-15T11:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a circle widgets</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2506585#M976921</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/522702"&gt;@Stiphilan10&lt;/a&gt;&amp;nbsp;How are you ?&lt;/P&gt;&lt;P&gt;In order to create this widget you need to design using HTML and CSS. I am pasting the HTML and CSS code for you just create one widget and paste those codes you will get it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;HTML:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div style="display:flex; flex-direction:column; "&amp;gt;
&amp;lt;h3 style="color:black;  padding:10px 0px 10px 270px;"&amp;gt;
  My Stuff
  &amp;lt;/h3&amp;gt;
  &amp;lt;div style="display:flex; gap:40px; justify-content:center;"&amp;gt;
    &amp;lt;div&amp;gt;
      &amp;lt;div class="red"&amp;gt;
      11
    &amp;lt;/div&amp;gt;
      &amp;lt;h4&amp;gt;
        All Records
      &amp;lt;/h4&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;
      &amp;lt;div class="red"&amp;gt;
      2
    &amp;lt;/div&amp;gt;
      &amp;lt;h4&amp;gt;
        Incidents
      &amp;lt;/h4&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;
      &amp;lt;div class="red"&amp;gt;
      9
    &amp;lt;/div&amp;gt;
      &amp;lt;h4&amp;gt;
        Requests
      &amp;lt;/h4&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;
      &amp;lt;div class="red"&amp;gt;
      0
    &amp;lt;/div&amp;gt;
      &amp;lt;h4&amp;gt;
        Approvals
      &amp;lt;/h4&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;
      &amp;lt;div class="red"&amp;gt;
      0
    &amp;lt;/div&amp;gt;
      &amp;lt;h4&amp;gt;
        Watched Items
      &amp;lt;/h4&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;CSS:&lt;/P&gt;&lt;LI-CODE lang="css"&gt;*{
  padding:0;
  margin:0;
  box-sizing:border-box;
}
.red:hover{
  background-color:red;
  height:90px;
  width:90px;
  border-radius:50%;
  
}
.red{
  background-color:black;
  text-align:center;
  color:white;
  width:80px;
  border-radius:50px; 
  height:80px;
  cursor:pointer;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:30px;
}
.red:active{
  background-color:blue;
}
h4{
  font-size:15px;
  color:black;
  text-align:center;
  padding-top:10px;
}
h4:hover{
  color:red;
}&lt;/LI-CODE&gt;&lt;P&gt;The Output is here&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Uday_Kumar_0-1678881238869.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/247511i6656B1DB495CC62E/image-size/medium?v=v2&amp;amp;px=400" alt="Uday_Kumar_0-1678881238869.png" title="Uday_Kumar_0-1678881238869.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please hit like&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark my response as correct if that helps you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Uday Kumar Valapudasu&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 11:56:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-design-a-circle-widgets/m-p/2506585#M976921</guid>
      <dc:creator>Uday_Kumar</dc:creator>
      <dc:date>2023-03-15T11:56:48Z</dc:date>
    </item>
  </channel>
</rss>

