<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>შეტყობინებების დაფა</title>
		<link>https://saiti-arqivi.ucoz.com/board/</link>
		<description>შეტყობინებების დაფა</description>
		<lastBuildDate>Sat, 23 Nov 2024 04:27:41 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://saiti-arqivi.ucoz.com/board/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>მაგარი რეიტინგი {საჩვენებელი}</title>
			<description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;

&lt;head&gt;
 &lt;meta charset=&quot;UTF-8&quot;&gt;
 

 &lt;link rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; /&gt;

 &lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;

 &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; /&gt;

 &lt;link rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; color=&quot;#111&quot; /&gt;



 
 &lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;


 &lt;title&gt;reduced rating&lt;/title&gt;

 &lt;link rel=&quot;canonical&quot; href=&quot;https://codepen.io/nucular/pen/VeXqjg&quot;&gt;
 
 
 
 
&lt;style&gt;
html, body {
 font-family: &quot;Roboto&quot;, sans-serif;
 font-size: 20px;
 color: #222;
}

h1 {
 font-weight: normal;
}

.container {
 margin-left: auto;
 margin-right: auto;
 max-width: 800px;
}

#rating {
 display: inline-block;
 width: 100%;
 height: 32px;
 background-color: #eee;
 border: 1px solid #999;
 border-radius: 5px;
}

#rating-inner {
 display: inline-block;
 width: 0px;
 height: 32px;
 background-color: #58f;
 pointer-events: none;
}
&lt;/style&gt;

 &lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;

 &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js&quot;&gt;&lt;/script&gt;

 
&lt;/head&gt;

&lt;body translate=&quot;no&quot;&gt;
 &lt;div class=&quot;container&quot;&gt;
 &lt;h1&gt;reduced rating&lt;/h1&gt;
 
 &lt;span id=&quot;rating&quot;&gt;
 &lt;span id=&quot;rating-inner&quot;&gt;&lt;/span&gt;
 &lt;/span&gt;

 &lt;div&gt;&lt;span id=&quot;result&quot;&gt;0&lt;/span&gt; stars&lt;/div&gt;
&lt;/div&gt;
 &lt;script src=&apos;//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js&apos;&gt;&lt;/script&gt;
 &lt;script id=&quot;rendered-js&quot; &gt;
function gcd(u, v) {
 // simple cases (termination)
 if (u == v)
 return u;

 if (u == 0)
 return v;

 if (v == 0)
 return u;

 // look for factors of 2
 if (~u &amp; 1) {// u is even
 if (v &amp; 1) // v is odd
 return gcd(u &gt;&gt; 1, v);else
 // both u and v are even
 return gcd(u &gt;&gt; 1, v &gt;&gt; 1) &lt;&lt; 1;
 }

 if (~v &amp; 1) // u is odd, v is even
 return gcd(u, v &gt;&gt; 1);

 // reduce larger argument
 if (u &gt; v)
 return gcd(u - v &gt;&gt; 1, v);

 return gcd(v - u &gt;&gt; 1, u);
}

function ratingText(x, w) {
 var d = gcd(x, w);
 var u = x / d;
 var v = w / d;

 if (u / v == 0)
 return &quot;0&quot;;else
 if (u / v == 1)
 return &quot;1/1&quot;;
 return Math.round(u) + &quot;/&quot; + Math.round(v);
}

var steps = 1;
var current = 0;
$(function () {
 $(&quot;#rating&quot;).on(&quot;mousemove&quot;, function (e) {
 var w = $(e.target).width();
 var n = Math.ceil(e.offsetX * steps / w) / steps;
 $(&quot;#result&quot;).text(ratingText(n * steps, steps));
 $(&quot;#rating-inner&quot;).css(&quot;width&quot;, n * w);
 if (n != current)
 $(&quot;#rating-inner&quot;).css(&quot;background-color&quot;, &quot;#ccc&quot;);else

 $(&quot;#rating-inner&quot;).css(&quot;background-color&quot;, &quot;#58f&quot;);
 }).on(&quot;mousedown&quot;, function (e) {
 var w = $(e.target).width();
 current = Math.ceil(e.offsetX * steps / w) / steps;
 }).on(&quot;mouseleave&quot;, function (e) {
 var w = $(e.target).width();
 $(&quot;#result&quot;).text(ratingText(current * steps, steps));
 $(&quot;#rating-inner&quot;).css(&quot;width&quot;, current * w).css(&quot;background-color&quot;, &quot;#58f&quot;);
 });

 $(window).on(&quot;resize&quot;, function (e) {
 var w = $(&quot;#rating&quot;).width();
 steps = w;

 $(&quot;#result&quot;).text(ratingText(current * steps, steps));
 $(&quot;#rating-inner&quot;).css(&quot;width&quot;, current * w).css(&quot;background-color&quot;, &quot;#58f&quot;);
 });

 steps = $(&quot;#rating&quot;).width();
});
//# sourceURL=pen.js
 &lt;/script&gt;

 
&lt;/body&gt;

&lt;/html&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/23-1-0-1727</link>
			<category>რეიტინგი საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/23-1-0-1727</guid>
			<pubDate>Sat, 23 Nov 2024 04:27:41 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი კალენდარი ჩემი საიტისათვის {საჩვენებელი}</title>
			<description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;

&lt;head&gt;
 &lt;meta charset=&quot;UTF-8&quot;&gt;
 

 &lt;link rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; /&gt;

 &lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;

 &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; /&gt;

 &lt;link rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; color=&quot;#111&quot; /&gt;



 
 &lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;


 &lt;title&gt;React Simple Calendar&lt;/title&gt;

 &lt;link rel=&quot;canonical&quot; href=&quot;https://codepen.io/asrdesignsol/pen/KKVEwVo&quot;&gt;
 
 &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css&quot;&gt;

 &lt;link rel=&apos;stylesheet&apos; href=&apos;https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css&apos;&gt;
 
&lt;style&gt;
.vertical-center {
 display: flex;
 justify-content: center;
 align-items: center;
}
body {
 background: #EFEFEF;
}
.row {
 display: flex;
 width: 100%;
}
.calendar {
 display: block;
 background: #FFFFFF;
 width: 330px;
 border: solid 1px #CCCCCC;
 margin: 10px auto;
 box-shadow: 0 0 15px 0 #C0C0C0;
 font-size: 1.3rem;
 text-align: center;
 border-radius: 8px;
 padding: 38px;
 font-size: 16px;
}
.calendar header {
 display: flex;
 justify-content: center;
 align-items: center;
 cursor: default;
 font-size: 1.4rem;
 display: block;
 font-weight: bold;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 color: #00ABEE;
}
.calendar header .month-display {
 align-items: center;
 height: 40px;
}
.calendar header .month-label {
 flex: 1;
 text-align: left;
 padding-left: 10px;
 font-size: 16px;
}
.calendar header .arrow {
 flex-basis: 6%;
 font-weight: bold;
 cursor: pointer;
 transition: background 0.2s;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}
.calendar .week:first-child {
 border-top: none;
}
.calendar .day-names {
 color: #00ABEE;
 font-weight: bold;
 cursor: default;
 font-size: 16px;
}
.calendar .day-names .day {
 cursor: default;
}
.calendar .day-names .day:hover {
 background: inherit;
}
.calendar .day {
 display: flex;
 justify-content: center;
 align-items: center;
 flex: 1;
 height: 35px;
 cursor: pointer;
 transition: all 0.2s;
 padding: 6px;
}
.calendar .day:hover {
 background: #EFEFEF;
}
.calendar .day:first-child {
 border-left: none;
}
.calendar .day.today {
 background: #d5f3ff;
 border-radius: 50%;
 width: 35px;
 max-width: 35px;
 height: 35px;
}
.calendar .day.different-month {
 color: #C0C0C0;
}
.calendar .day.selected {
 background: #00ABEE;
 color: #FFFFFF;
 border-radius: 50%;
 width: 35px;
 max-width: 35px;
 height: 35px;
}
&lt;/style&gt;

 
 
 
&lt;/head&gt;

&lt;body translate=&quot;no&quot;&gt;
 &lt;div id=&quot;cal&quot;&gt;&lt;/div&gt;
 &lt;script src=&apos;https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js&apos;&gt;&lt;/script&gt;
&lt;script src=&apos;https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react-dom.min.js&apos;&gt;&lt;/script&gt;
&lt;script src=&apos;https://momentjs.com/downloads/moment.min.js&apos;&gt;&lt;/script&gt;
 &lt;script id=&quot;rendered-js&quot; &gt;
class Calendar extends React.Component {
 constructor(props) {
 super(props);

 this.state = {
 month: moment(),
 selected: moment().startOf(&apos;day&apos;) };


 this.previous = this.previous.bind(this);
 this.next = this.next.bind(this);
 }

 previous() {
 const {
 month } =
 this.state;

 this.setState({
 month: month.subtract(1, &apos;month&apos;) });

 }

 next() {
 const {
 month } =
 this.state;

 this.setState({
 month: month.add(1, &apos;month&apos;) });

 }

 select(day) {
 this.setState({
 selected: day.date,
 month: day.date.clone() });

 }

 renderWeeks() {
 let weeks = [];
 let done = false;
 let date = this.state.month.clone().startOf(&quot;month&quot;).add(&quot;w&quot; - 1).day(&quot;Sunday&quot;);
 let count = 0;
 let monthIndex = date.month();

 const {
 selected,
 month } =
 this.state;

 while (!done) {if (window.CP.shouldStopExecution(0)) break;
 weeks.push( /*#__PURE__*/
 React.createElement(Week, { key: date,
 date: date.clone(),
 month: month,
 select: day =&gt; this.select(day),
 selected: selected }));


 date.add(1, &quot;w&quot;);

 done = count++ &gt; 2 &amp;&amp; monthIndex !== date.month();
 monthIndex = date.month();
 }window.CP.exitedLoop(0);

 return weeks;
 }

 renderMonthLabel() {
 const {
 month } =
 this.state;

 return /*#__PURE__*/React.createElement(&quot;span&quot;, { className: &quot;month-label&quot; }, month.format(&quot;MMMM YYYY&quot;));
 }

 render() {
 return /*#__PURE__*/(
 React.createElement(&quot;section&quot;, { className: &quot;calendar&quot; }, /*#__PURE__*/
 React.createElement(&quot;header&quot;, { className: &quot;header&quot; }, /*#__PURE__*/
 React.createElement(&quot;div&quot;, { className: &quot;month-display row&quot; },
 this.renderMonthLabel(), /*#__PURE__*/
 React.createElement(&quot;i&quot;, { className: &quot;arrow fa fa-angle-left&quot;, onClick: this.previous }), /*#__PURE__*/

 React.createElement(&quot;i&quot;, { className: &quot;arrow fa fa-angle-right&quot;, onClick: this.next })), /*#__PURE__*/

 React.createElement(DayNames, null)),

 this.renderWeeks()));


 }}


class DayNames extends React.Component {
 render() {
 return /*#__PURE__*/(
 React.createElement(&quot;div&quot;, { className: &quot;row day-names&quot; }, /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;S&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;M&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;T&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;W&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;T&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;F&quot;), /*#__PURE__*/
 React.createElement(&quot;span&quot;, { className: &quot;day&quot; }, &quot;S&quot;)));


 }}


class Week extends React.Component {
 render() {
 let days = [];
 let {
 date } =
 this.props;

 const {
 month,
 selected,
 select } =
 this.props;

 for (var i = 0; i &lt; 7; i++) {if (window.CP.shouldStopExecution(1)) break;
 let day = {
 name: date.format(&quot;dd&quot;).substring(0, 1),
 number: date.date(),
 isCurrentMonth: date.month() === month.month(),
 isToday: date.isSame(new Date(), &quot;day&quot;),
 date: date };

 days.push( /*#__PURE__*/
 React.createElement(Day, { day: day,
 selected: selected,
 select: select }));


 date = date.clone();
 date.add(1, &quot;day&quot;);
 }window.CP.exitedLoop(1);

 return /*#__PURE__*/(
 React.createElement(&quot;div&quot;, { className: &quot;row week&quot;, key: days[0] },
 days));


 }}



class Day extends React.Component {
 render() {
 const {
 day,
 day: {
 date,
 isCurrentMonth,
 isToday,
 number },

 select,
 selected } =
 this.props;

 return /*#__PURE__*/(
 React.createElement(&quot;span&quot;, {
 key: date.toString(),
 className: &quot;day&quot; + (isToday ? &quot; today&quot; : &quot;&quot;) + (isCurrentMonth ? &quot;&quot; : &quot; different-month&quot;) + (date.isSame(selected) ? &quot; selected&quot; : &quot;&quot;),
 onClick: () =&gt; select(day) }, number));

 }}


ReactDOM.render( /*#__PURE__*/React.createElement(Calendar, null), document.getElementById(&apos;cal&apos;));
//# sourceURL=pen.js
 &lt;/script&gt;

 
 &lt;script src=&quot;https://cpwebassets.codepen.io/assets/editor/iframe/iframeRefreshCSS-44fe83e49b63affec96918c9af88c0d80b209a862cf87ac46bc933074b8c557d.js&quot;&gt;&lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/3-1-0-1717</link>
			<category>კალენდრები</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/3-1-0-1717</guid>
			<pubDate>Sat, 23 Nov 2024 03:37:07 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი საათი  {საჩვენებელი}</title>
			<description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;

&lt;head&gt;
 &lt;meta charset=&quot;UTF-8&quot;&gt;
 

 &lt;link rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; /&gt;

 &lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;

 &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; /&gt;

 &lt;link rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; color=&quot;#111&quot; /&gt;



 
 &lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;


 &lt;title&gt;Majora&apos;s clock tower&lt;/title&gt;

 &lt;link rel=&quot;canonical&quot; href=&quot;https://codepen.io/alex3o0/pen/abVKQxY&quot;&gt;
 
 
 
 
&lt;style&gt;
body {
 background-color: #f4f4dd;
}

#seconds, #minutes, #hours {
 position: fixed;
 border-radius: 50%;
 top: calc(50% - 127px);
 left: calc(50% - 127px);
 transform: rotateZ(0deg);
 transition: all 0.3s cubic-bezier(0.77, 1.76, 0.4, 0.77);
 width: 255px;
 height: 255px;
 background-image: url(&quot;https://i.pinimg.com/originals/59/28/66/5928669a17321feb5f00e808d6b61bc4.png&quot;);
 background-size: 255px;
 background-repeat: no-repeat;
 background-position: center;
 z-index: 1;
}

#minutes {
 top: calc(50% - 100px);
 left: calc(50% - 100px);
 width: 200px;
 height: 200px;
 background-size: 200px;
 z-index: 2;
}

#hours {
 top: calc(50% - 75px);
 left: calc(50% - 75px);
 background-size: 200px;
 width: 150px;
 height: 150px;
 z-index: 3;
}
#hours #coin {
 position: relative;
 top: calc(100% - 48px);
 left: calc(50% - 22px);
 height: 45px;
 width: 45px;
 border-radius: 50%;
 z-index: 4;
 perspective: 2000px;
}
#hours #coin #shadow {
 position: absolute;
 top: 0;
 left: 0;
 background-color: #221E1C;
 box-shadow: inset -1px -1px 5px 5px rgba(0, 0, 0, 0.7);
 width: 45px;
 height: 45px;
 border-radius: 50%;
 z-index: 5;
}
#hours #coin #moon {
 position: absolute;
 top: 0;
 left: 0;
 background-image: url(&quot;https://devartiral.com/majoras-moon.png&quot;);
 background-size: cover;
 background-position: center;
 border-radius: 50%;
 width: 45px;
 height: 45px;
 perspective: 2000px;
 backface-visibility: hidden;
 transform: rotateY(180deg);
 transition: all 0.5s cubic-bezier(0.77, 1.76, 0.4, 0.77) 0.5s;
 z-index: 6;
}
#hours #coin #moon.night {
 transform: rotateY(0deg);
}
#hours #coin #sun {
 position: absolute;
 top: 0;
 left: 0;
 background-image: url(&quot;https://devartiral.com/majoras-sun.png&quot;);
 background-size: cover;
 background-position: center;
 border-radius: 50%;
 width: 45px;
 height: 45px;
 perspective: 2000px;
 backface-visibility: hidden;
 transform: rotateY(0deg);
 transition: all 0.5s cubic-bezier(0.77, 1.76, 0.4, 0.77) 0.5s;
 z-index: 7;
}
#hours #coin #sun.night {
 transform: rotateY(180deg);
}

#spike {
 width: 2px;
 height: 130px;
 background-color: firebrick;
 box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
 position: fixed;
 top: calc(50% - 130px);
 left: 50%;
 transform: translateX(calc(1px - 50%));
 z-index: 8;
}
&lt;/style&gt;

 &lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;

 
 
&lt;/head&gt;

&lt;body translate=&quot;no&quot;&gt;
 &lt;!-- #CodePenChallenge: Timekeeping --&gt;
&lt;div id=&quot;seconds&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;minutes&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;hours&quot;&gt;
 &lt;div id=&quot;coin&quot;&gt;
 &lt;div id=&quot;shadow&quot;&gt;&lt;/div&gt;
 &lt;div id=&quot;moon&quot;&gt;&lt;/div&gt;
 &lt;div id=&quot;sun&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;spike&quot;&gt;&lt;/div&gt;
 
 &lt;script id=&quot;rendered-js&quot; &gt;
const secondsLeg = document.getElementById(&quot;seconds&quot;);
const minutesLeg = document.getElementById(&quot;minutes&quot;);
const hoursLeg = document.getElementById(&quot;hours&quot;);
const sun = document.getElementById(&quot;sun&quot;);
const moon = document.getElementById(&quot;moon&quot;);

const getTime = () =&gt; {
 const time = new Date();
 return {
 hours: time.getHours(),
 minutes: time.getMinutes(),
 seconds: time.getSeconds() };

};
const tranform = (x) =&gt;
`transform: rotateZ(${x}deg); ` + (x == 0 ? &quot;transition: none&quot; : &quot;&quot;);
const getSecondsDeg = s =&gt; 360 / 60 * s;
const getMinutesDeg = m =&gt; 360 / 60 * m;
const getHoursDeg = h =&gt; 360 / 12 * h;
const calc = () =&gt; {
 const time = getTime();
 const secondsDeg = getSecondsDeg(time.seconds);
 const minutesDeg = getMinutesDeg(time.minutes);
 const hoursDeg = getHoursDeg(time.hours);
 secondsLeg.setAttribute(&quot;style&quot;, tranform(secondsDeg));
 minutesLeg.setAttribute(&quot;style&quot;, tranform(minutesDeg));
 hoursLeg.setAttribute(&quot;style&quot;, tranform(hoursDeg));
 if (time.hours &gt; 6 &amp;&amp; time.hours &lt; 18) {
 sun.classList.remove(&quot;night&quot;);
 moon.classList.remove(&quot;night&quot;);
 } else {
 sun.classList.add(&quot;night&quot;);
 moon.classList.add(&quot;night&quot;);
 }
};

setInterval(calc, 1000);
//# sourceURL=pen.js
 &lt;/script&gt;

 
&lt;/body&gt;

&lt;/html&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/12-1-0-1711</link>
			<category>საათები საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/12-1-0-1711</guid>
			<pubDate>Sat, 23 Nov 2024 03:05:30 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი საათი  {საჩვენებელი}</title>
			<description>&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; /&gt;&lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; /&gt;
&lt;link color=&quot;#111&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; /&gt;&lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;
&lt;title&gt;&lt;/title&gt;
&lt;link href=&quot;https://codepen.io/a7rarpress/pen/YzJqyYV&quot; rel=&quot;canonical&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;* {
 border: 0;
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}
:root {
 --hue: 223;
 --bg: hsl(var(--hue),10%,90%);
 --fg: hsl(var(--hue),10%,10%);
 font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320));
}
body, button {
 color: var(--fg);
 font: 1em/1.5 &quot;Segoe UI&quot;, Roboto, Helvetica, Arial, sans-serif;
}
body {
 background-color: var(--bg);
 height: 100vh;
 display: grid;
 place-items: center;
}

.progClock {
 display: grid;
 justify-content: center;
 align-content: center;
 position: relative;
 text-align: center;
 width: 16em;
 height: 16em;
}
.progClock__time-date,
.progClock__time-digit,
.progClock__time-colon,
.progClock__time-ampm {
 transition: color 0.2s linear;
 -webkit-user-select: none;
 -moz-user-select: none;
 user-select: none;
}
.progClock__time-date,
.progClock__time-digit {
 background: transparent;
}
.progClock__time-date,
.progClock__time-ampm {
 grid-column: 1 / 6;
}
.progClock__time-date {
 font-size: 0.75em;
 line-height: 1.33;
}
.progClock__time-digit,
.progClock__time-colon {
 font-size: 2em;
 font-weight: 400;
 grid-row: 2;
}
.progClock__time-colon {
 line-height: 1.275;
}
.progClock__time-ampm {
 cursor: default;
 grid-row: 3;
}
.progClock__rings {
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: -1;
}
.progClock__ring {
 opacity: 0.1;
}
.progClock__ring-fill {
 transition:
 opacity 0s 0.3s linear,
 stroke-dashoffset 0.3s ease-in-out;
}
.progClock__ring-fill--360 {
 opacity: 0;
 stroke-dashoffset: 0;
 transition-duration: 0.3s;
}
[data-group]:focus {
 outline: transparent;
}
[data-units] {
 transition: opacity 0.2s linear;
}
[data-group=&quot;d&quot;]:focus,
[data-group=&quot;d&quot;]:hover {
 color: rgb(253,41,20);
}
[data-group=&quot;h&quot;]:focus,
[data-group=&quot;h&quot;]:hover {
 color: rgb(51,53,65);
}
[data-group=&quot;m&quot;]:focus,
[data-group=&quot;m&quot;]:hover {
 color: rgb(92,184,92);
}
[data-group=&quot;s&quot;]:focus,
[data-group=&quot;s&quot;]:hover {
 color: rgb(249,187,4);
}
[data-group]:focus ~ .progClock__rings [data-units],
[data-group]:hover ~ .progClock__rings [data-units] {
 opacity: 0.2;
}
[data-group=&quot;d&quot;]:focus ~ .progClock__rings [data-units=&quot;d&quot;],
[data-group=&quot;d&quot;]:hover ~ .progClock__rings [data-units=&quot;d&quot;],
[data-group=&quot;h&quot;]:focus ~ .progClock__rings [data-units=&quot;h&quot;],
[data-group=&quot;h&quot;]:hover ~ .progClock__rings [data-units=&quot;h&quot;],
[data-group=&quot;m&quot;]:focus ~ .progClock__rings [data-units=&quot;m&quot;],
[data-group=&quot;m&quot;]:hover ~ .progClock__rings [data-units=&quot;m&quot;],
[data-group=&quot;s&quot;]:focus ~ .progClock__rings [data-units=&quot;s&quot;],
[data-group=&quot;s&quot;]:hover ~ .progClock__rings [data-units=&quot;s&quot;] {
 opacity: 1;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
 :root {
 --bg: hsl(var(--hue),10%,10%);
 --fg: hsl(var(--hue),10%,90%);
 }
 .progClock__ring {
 opacity: 0.2;
 }
}
&lt;/style&gt;
&lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;
&lt;div class=&quot;progClock&quot; id=&quot;clock&quot;&gt;&lt;button class=&quot;progClock__time-date&quot; data-group=&quot;d&quot; type=&quot;button&quot;&gt;&lt;small data-unit=&quot;w&quot;&gt;Sunday&lt;/small&gt;&lt;br /&gt;
&lt;span data-unit=&quot;mo&quot;&gt;January&lt;/span&gt; &lt;span data-unit=&quot;d&quot;&gt;1&lt;/span&gt;&lt;/button&gt;&lt;button class=&quot;progClock__time-digit&quot; data-group=&quot;h&quot; data-unit=&quot;h&quot; type=&quot;button&quot;&gt;12&lt;/button&gt;&lt;span class=&quot;progClock__time-colon&quot;&gt;:&lt;/span&gt;&lt;button class=&quot;progClock__time-digit&quot; data-group=&quot;m&quot; data-unit=&quot;m&quot; type=&quot;button&quot;&gt;00&lt;/button&gt;&lt;span class=&quot;progClock__time-colon&quot;&gt;:&lt;/span&gt;&lt;button class=&quot;progClock__time-digit&quot; data-group=&quot;s&quot; data-unit=&quot;s&quot; type=&quot;button&quot;&gt;00&lt;/button&gt; &lt;span class=&quot;progClock__time-ampm&quot; data-unit=&quot;ap&quot;&gt;AM&lt;/span&gt; &lt;svg class=&quot;progClock__rings&quot; height=&quot;256&quot; viewbox=&quot;0 0 256 256&quot; width=&quot;256&quot;&gt; &lt;defs&gt; &lt;lineargradient id=&quot;clock-red&quot; x1=&quot;1&quot; x2=&quot;0&quot; y1=&quot;0.5&quot; y2=&quot;0.5&quot;&gt; &lt;stop offset=&quot;0%&quot; stop-color=&quot;rgb(253,41,20)&quot;&gt;&lt;/stop&gt; &lt;stop offset=&quot;100%&quot; stop-color=&quot;rgb(253,41,20)&quot;&gt;&lt;/stop&gt; &lt;/lineargradient&gt; &lt;lineargradient id=&quot;clock-yellow&quot; x1=&quot;1&quot; x2=&quot;0&quot; y1=&quot;0.5&quot; y2=&quot;0.5&quot;&gt; &lt;stop offset=&quot;0%&quot; stop-color=&quot;rgb(51,53,65)&quot;&gt;&lt;/stop&gt; &lt;stop offset=&quot;100%&quot; stop-color=&quot;rgb(51,53,65)&quot;&gt;&lt;/stop&gt; &lt;/lineargradient&gt; &lt;lineargradient id=&quot;clock-blue&quot; x1=&quot;1&quot; x2=&quot;0&quot; y1=&quot;0.5&quot; y2=&quot;0.5&quot;&gt; &lt;stop offset=&quot;0%&quot; stop-color=&quot;rgb(92,184,92)&quot;&gt;&lt;/stop&gt; &lt;stop offset=&quot;100%&quot; stop-color=&quot;rgb(92,184,92)&quot;&gt;&lt;/stop&gt; &lt;/lineargradient&gt; &lt;lineargradient id=&quot;clock-purple&quot; x1=&quot;1&quot; x2=&quot;0&quot; y1=&quot;0.5&quot; y2=&quot;0.5&quot;&gt; &lt;stop offset=&quot;0%&quot; stop-color=&quot;rgb(249,187,4)&quot;&gt;&lt;/stop&gt; &lt;stop offset=&quot;100%&quot; stop-color=&quot;rgb(249,187,4)&quot;&gt;&lt;/stop&gt; &lt;/lineargradient&gt; &lt;/defs&gt; &lt;!-- Days --&gt; &lt;g data-units=&quot;d&quot;&gt; &lt;circle class=&quot;progClock__ring&quot; cx=&quot;128&quot; cy=&quot;128&quot; fill=&quot;none&quot; opacity=&quot;0.1&quot; r=&quot;74&quot; stroke=&quot;url(#clock-red)&quot; stroke-width=&quot;12&quot;&gt;&lt;/circle&gt; &lt;circle class=&quot;progClock__ring-fill&quot; cx=&quot;128&quot; cy=&quot;128&quot; data-ring=&quot;mo&quot; fill=&quot;none&quot; r=&quot;74&quot; stroke=&quot;url(#clock-red)&quot; stroke-dasharray=&quot;465 465&quot; stroke-dashoffset=&quot;465&quot; stroke-linecap=&quot;round&quot; stroke-width=&quot;12&quot; transform=&quot;rotate(-90,128,128)&quot;&gt;&lt;/circle&gt; &lt;/g&gt; &lt;!-- Hours --&gt; &lt;g data-units=&quot;h&quot;&gt; &lt;circle class=&quot;progClock__ring&quot; cx=&quot;128&quot; cy=&quot;128&quot; fill=&quot;none&quot; opacity=&quot;0.1&quot; r=&quot;90&quot; stroke=&quot;url(#clock-yellow)&quot; stroke-width=&quot;12&quot;&gt;&lt;/circle&gt; &lt;circle class=&quot;progClock__ring-fill&quot; cx=&quot;128&quot; cy=&quot;128&quot; data-ring=&quot;d&quot; fill=&quot;none&quot; r=&quot;90&quot; stroke=&quot;url(#clock-yellow)&quot; stroke-dasharray=&quot;565.5 565.5&quot; stroke-dashoffset=&quot;565.5&quot; stroke-linecap=&quot;round&quot; stroke-width=&quot;12&quot; transform=&quot;rotate(-90,128,128)&quot;&gt;&lt;/circle&gt; &lt;/g&gt; &lt;!-- Minutes --&gt; &lt;g data-units=&quot;m&quot;&gt; &lt;circle class=&quot;progClock__ring&quot; cx=&quot;128&quot; cy=&quot;128&quot; fill=&quot;none&quot; opacity=&quot;0.1&quot; r=&quot;106&quot; stroke=&quot;url(#clock-blue)&quot; stroke-width=&quot;12&quot;&gt;&lt;/circle&gt; &lt;circle class=&quot;progClock__ring-fill&quot; cx=&quot;128&quot; cy=&quot;128&quot; data-ring=&quot;h&quot; fill=&quot;none&quot; r=&quot;106&quot; stroke=&quot;url(#clock-blue)&quot; stroke-dasharray=&quot;666 666&quot; stroke-dashoffset=&quot;666&quot; stroke-linecap=&quot;round&quot; stroke-width=&quot;12&quot; transform=&quot;rotate(-90,128,128)&quot;&gt;&lt;/circle&gt; &lt;/g&gt; &lt;!-- Seconds --&gt; &lt;g data-units=&quot;s&quot;&gt; &lt;circle class=&quot;progClock__ring&quot; cx=&quot;128&quot; cy=&quot;128&quot; fill=&quot;none&quot; opacity=&quot;0.1&quot; r=&quot;122&quot; stroke=&quot;url(#clock-purple)&quot; stroke-width=&quot;12&quot;&gt;&lt;/circle&gt; &lt;circle class=&quot;progClock__ring-fill&quot; cx=&quot;128&quot; cy=&quot;128&quot; data-ring=&quot;m&quot; fill=&quot;none&quot; r=&quot;122&quot; stroke=&quot;url(#clock-purple)&quot; stroke-dasharray=&quot;766.5 766.5&quot; stroke-dashoffset=&quot;766.5&quot; stroke-linecap=&quot;round&quot; stroke-width=&quot;12&quot; transform=&quot;rotate(-90,128,128)&quot;&gt;&lt;/circle&gt; &lt;/g&gt; &lt;/svg&gt;&lt;/div&gt;
&lt;script src=&quot;./function.js&quot;&gt;&lt;/script&gt;&lt;script id=&quot;rendered-js&quot; &gt;
window.addEventListener(&quot;DOMContentLoaded&quot;, () =&gt; {
 const clock = new ProgClock(&quot;#clock&quot;);
});

class ProgClock {
 constructor(qs) {
 this.el = document.querySelector(qs);
 this.time = 0;
 this.updateTimeout = null;
 this.ringTimeouts = [];
 this.update();
 }
 getDayOfWeek(day) {
 switch (day) {
 case 1:
 return &quot;ორშაბათი&quot;;
 case 2:
 return &quot;სამშაბათი&quot;;
 case 3:
 return &quot;ოთხშაბათი&quot;;
 case 4:
 return &quot;ხუთშაბათი&quot;;
 case 5:
 return &quot;პარასკევი&quot;;
 case 6:
 return &quot;შაბათი&quot;;
 default:
 return &quot;კვირა&quot;;}

 }
 getMonthInfo(mo, yr) {
 switch (mo) {
 case 1:
 return { name: &quot;თებერვალი&quot;, days: yr % 4 === 0 ? 29 : 28 };
 case 2:
 return { name: &quot;მარტი&quot;, days: 31 };
 case 3:
 return { name: &quot;აპრილი&quot;, days: 30 };
 case 4:
 return { name: &quot;მაისი&quot;, days: 31 };
 case 5:
 return { name: &quot;ივნისი&quot;, days: 30 };
 case 6:
 return { name: &quot;ივლისი&quot;, days: 31 };
 case 7:
 return { name: &quot;აგვისტო&quot;, days: 31 };
 case 8:
 return { name: &quot;სექტემბერი&quot;, days: 30 };
 case 9:
 return { name: &quot;ოქტომბერი&quot;, days: 31 };
 case 10:
 return { name: &quot;ნოემბერი&quot;, days: 30 };
 case 11:
 return { name: &quot;დეკემბერი&quot;, days: 31 };
 default:
 return { name: &quot;იანვარი&quot;, days: 31 };}

 }
 update() {
 this.time = new Date();

 if (this.el) {
 // date and time
 const dayOfWeek = this.time.getDay();
 const year = this.time.getFullYear();
 const month = this.time.getMonth();
 const day = this.time.getDate();
 const hr = this.time.getHours();
 const min = this.time.getMinutes();
 const sec = this.time.getSeconds();
 const dayOfWeekName = this.getDayOfWeek(dayOfWeek);
 const monthInfo = this.getMonthInfo(month, year);
 const m_progress = sec / 60;
 const h_progress = (min + m_progress) / 60;
 const d_progress = (hr + h_progress) / 24;
 const mo_progress = (day - 1 + d_progress) / monthInfo.days;
 const units = [
 {
 label: &quot;w&quot;,
 value: dayOfWeekName },

 {
 label: &quot;mo&quot;,
 value: monthInfo.name,
 progress: mo_progress },

 {
 label: &quot;d&quot;,
 value: day,
 progress: d_progress },

 {
 label: &quot;h&quot;,
 value: hr &gt; 12 ? hr - 12 : hr,
 progress: h_progress },

 {
 label: &quot;m&quot;,
 value: min &lt; 10 ? &quot;0&quot; + min : min,
 progress: m_progress },

 {
 label: &quot;s&quot;,
 value: sec &lt; 10 ? &quot;0&quot; + sec : sec },

 {
 label: &quot;ap&quot;,
 value: hr &gt; 12 ? &quot;PM&quot; : &quot;AM&quot; }];



 // flush out the timeouts
 this.ringTimeouts.forEach(t =&gt; {
 clearTimeout(t);
 });
 this.ringTimeouts = [];

 // update the display
 units.forEach(u =&gt; {
 // rings
 const ring = this.el.querySelector(`[data-ring=&quot;${u.label}&quot;]`);

 if (ring) {
 const strokeDashArray = ring.getAttribute(&quot;stroke-dasharray&quot;);
 const fill360 = &quot;progClock__ring-fill--360&quot;;

 if (strokeDashArray) {
 // calculate the stroke
 const circumference = +strokeDashArray.split(&quot; &quot;)[0];
 const strokeDashOffsetclockt = 1 - u.progress;

 ring.setAttribute(
 &quot;stroke-dashoffset&quot;,
 strokeDashOffsetclockt * circumference);


 // add the fade-out transition, then remove it
 if (strokeDashOffsetclockt === 1) {
 ring.classList.add(fill360);

 this.ringTimeouts.push(
 setTimeout(() =&gt; {
 ring.classList.remove(fill360);
 }, 600));

 }
 }
 }

 // digits
 const unit = this.el.querySelector(`[data-unit=&quot;${u.label}&quot;]`);

 if (unit)
 unit.innerText = u.value;
 });
 }

 clearTimeout(this.updateTimeout);
 this.updateTimeout = setTimeout(this.update.bind(this), 1e3);
 }}
//# sourceURL=pen.js
 &lt;/script&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/12-1-0-1708</link>
			<category>საათები საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/12-1-0-1708</guid>
			<pubDate>Sat, 23 Nov 2024 02:35:39 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი საათი  {საჩვენებელი}</title>
			<description>&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; /&gt;&lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; /&gt;
&lt;link color=&quot;#111&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; /&gt;&lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;
&lt;title&gt;&lt;/title&gt;
&lt;link href=&quot;https://codepen.io/iammindless/pen/BavWdoX&quot; rel=&quot;canonical&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;* {
 box-sizing: border-box;
 user-select: none;
}

body {
 margin: 0;
 font-family: system-ui;
 background: #4d4d4d;
 display: grid;
 height: 100svh;
 place-items: center;
}

:root {
 --back-color: #242424;
 --fore-color: #F85B5B;
}

@property --clock-per {
 syntax: &quot;&lt;percentage&gt;&quot;;
 inherits: true;
 initial-value: 40%;
}
@keyframes rotate-outer {
 0% {
 --clock-per: 0%;
 --fore-color: #F85B5B;
 }
 50% {
 --clock-per: 100%;
 }
 50.001% {
 --clock-per: 0%;
 }
 100% {
 --clock-per: 100%;
 --fore-color: #242424;
 --back-color: #F85B5B;
 }
}
@keyframes heart-beat {
 0% {
 transform: scale(1);
 }
 50% {
 transform: scale(1.4);
 }
 100% {
 transform: scale(1);
 }
}
@keyframes rotate-dots {
 0% {
 transform: rotate(360deg);
 }
 100% {
 transform: rotate(0deg);
 }
}
.clock-face {
 position: relative;
 display: grid;
 place-items: center;
 width: 200px;
 aspect-ratio: 1;
 border-radius: 50%;
 margin: 2rem;
 background: conic-gradient(var(--fore-color) 0%, var(--fore-color) var(--clock-per), var(--back-color) 0);
 outline: 5px solid #242424;
 box-shadow: 0 0 0 12px #3b3b3b, 10px 10px 32px black, -10px -10px 32px white;
 animation: rotate-outer 4s infinite linear;
}
.clock-face::before {
 content: &quot;&quot;;
 position: absolute;
 left: 3px;
 top: 3px;
 right: 3px;
 bottom: 3px;
 background: #242424;
 border-radius: 50%;
}
.clock-face::after {
 content: &quot;&quot;;
 position: absolute;
 left: 11px;
 top: 11px;
 right: 11px;
 bottom: 11px;
 border: 2px dotted white;
 border-radius: 50%;
 animation: rotate-dots 16s infinite linear;
}
.clock-face .face-text {
 text-align: center;
 color: white;
 z-index: 1;
 width: 120px;
}
.clock-face .face-text .date {
 font-size: 0.8rem;
}
.clock-face .face-text .time {
 position: relative;
 font-size: 2.5rem;
 font-weight: 900;
 text-align: center;
}
.clock-face .face-text .info {
 text-align: center;
 font-size: 0.8rem;
 display: flex;
 justify-content: space-between;
}
.clock-face .face-text .info .heart {
 position: relative;
 display: inline-block;
 color: #F85B5B;
 font-size: 14px;
 animation: heart-beat 1.25s infinite ease-in-out;
}
.clock-face .face-text .info .heart::after {
 content: &quot;&quot;;
 display: block;
 position: absolute;
 left: 2px;
 top: 7px;
 width: 2px;
 height: 2px;
 background: rgba(255, 255, 255, 0.5);
}
&lt;/style&gt;
&lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;
&lt;div class=&quot;clock-face&quot;&gt;
&lt;div class=&quot;face-text&quot;&gt;
&lt;div class=&quot;date&quot;&gt;MON 15 JAN 2015&lt;/div&gt;

&lt;div class=&quot;time&quot;&gt;11:42&lt;/div&gt;

&lt;div class=&quot;info&quot;&gt;
&lt;div&gt;&lt;span class=&quot;heart&quot;&gt;&amp;hearts;&lt;/span&gt; &lt;span class=&quot;rate&quot;&gt;81&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;1248 KCAL&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;script id=&quot;rendered-js&quot; &gt;
const DATEELEMENT = document.querySelector(&quot;.date&quot;);
const TIMEELEMENT = document.querySelector(&quot;.time&quot;);
const RATEELEMENT = document.querySelector(&quot;.rate&quot;);

const animated = document.querySelector(&quot;.clock-face&quot;);
const DAYS = [&quot;კვი&quot;, &quot;ორშ&quot;, &quot;სამ&quot;, &quot;ოთხ&quot;, &quot;ხუთ&quot;, &quot;პარ&quot;, &quot;შაბ&quot;];
const MONTHS = [&quot;იან&quot;, &quot;თებ&quot;, &quot;მარ&quot;, &quot;აპრ&quot;, &quot;მაი&quot;, &quot;ივნ&quot;, &quot;ივლ&quot;, &quot;აგვ&quot;, &quot;სექ&quot;, &quot;ოქტ&quot;, &quot;ნოე&quot;, &quot;დეკ&quot;];

let loopPos = 0;

animated.addEventListener(&quot;animationiteration&quot;, e =&gt; {
 loopPos++;
 if (loopPos == 2)
 loopPos = 0;

 if (loopPos == 0)
 changeClockFace();
});

changeClockFace();

function changeClockFace() {
 let DATE = new Date(Date.now());

 let hours = DATE.getHours().toString().padStart(2, &apos;0&apos;);
 let minutes = DATE.getMinutes().toString().padStart(2, &apos;0&apos;);

 dateString = DATE.toLocaleDateString(&apos;en-UK&apos;, { year: &apos;numeric&apos;, month: &apos;short&apos;, day: &apos;numeric&apos; });

 TIMEELEMENT.innerText = `${hours}:${minutes}`;
 DATEELEMENT.innerText = `${DAYS[DATE.getDay()]} ${DATE.getDate()} ${MONTHS[DATE.getMonth()]} ${DATE.getFullYear()}`;
 RATEELEMENT.innerText = Math.floor(Math.random() * 15) + 65;
}
//# sourceURL=pen.js
 &lt;/script&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/12-1-0-1707</link>
			<category>საათები საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/12-1-0-1707</guid>
			<pubDate>Sat, 23 Nov 2024 02:29:33 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი საათი  {საჩვენებელი}</title>
			<description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;

&lt;head&gt;
 &lt;meta charset=&quot;UTF-8&quot;&gt;
 

 &lt;link rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; /&gt;

 &lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;

 &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; /&gt;

 &lt;link rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; color=&quot;#111&quot; /&gt;



 
 

 &lt;title&gt;Neumorphism Analog Clock&lt;/title&gt;

 &lt;link rel=&quot;canonical&quot; href=&quot;https://codepen.io/0pensource/pen/zYXvPQB&quot;&gt;
 
 
 
 
&lt;style&gt;
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html,
body {
 height: 100%;
}

body {
 display: grid;
 place-items: center;
 background: #dde1e7;
 text-align: center;
}

.clock {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 background: #dde1e7;
 height: 250px;
 width: 250px;
 border-radius: 50%;
 box-shadow: -3px -3px 7px #ffffff73,
 3px 3px 5px rgba(94, 104, 121, 0.288);
}

.clock:before {
 position: absolute;
 content: &apos;&apos;;
 height: 220px;
 width: 220px;
 background: #dde1e7;
 border-radius: 50%;
 box-shadow: inset -3px -3px 7px #ffffff73,
 inset 3px 3px 5px rgba(94, 104, 121, 0.288);
}

.clock:after {
 position: absolute;
 content: &apos;&apos;;
 height: 120px;
 width: 120px;
 background: #dde1e7;
 border-radius: 50%;
 box-shadow: -1px -1px 5px #ffffff73,
 1px 1px 3px rgba(94, 104, 121, 0.288);
}

.clock .center-nut {
 height: 15px;
 width: 15px;
 background: #404040;
 border-radius: 50%;
 z-index: 2;
 position: absolute;
}

.clock .center-nut2 {
 height: 9px;
 width: 9px;
 background: #3498db;
 border-radius: 50%;
 z-index: 15;
 position: absolute;
}

.indicators div {
 position: absolute;
 width: 2px;
 height: 5px;
 background: #404040;
}

.indicators div:nth-child(1) {
 transform: rotate(30deg) translateY(-100px);
}

.indicators div:nth-child(2) {
 transform: rotate(60deg) translateY(-100px);
}

.indicators div:nth-child(3) {
 background: #3498db;
 transform: rotate(90deg) translateY(-100px);
}

.indicators div:nth-child(4) {
 transform: rotate(120deg) translateY(-100px);
}

.indicators div:nth-child(5) {
 transform: rotate(150deg) translateY(-100px);
}

.indicators div:nth-child(6) {
 background: #3498db;
 transform: rotate(180deg) translateY(-100px);
}

.indicators div:nth-child(7) {
 transform: rotate(210deg) translateY(-100px);
}

.indicators div:nth-child(8) {
 transform: rotate(240deg) translateY(-100px);
}

.indicators div:nth-child(9) {
 background: #3498db;
 transform: rotate(270deg) translateY(-100px);
}

.indicators div:nth-child(10) {
 transform: rotate(300deg) translateY(-100px);
}

.indicators div:nth-child(11) {
 transform: rotate(330deg) translateY(-100px);
}

.indicators div:nth-child(12) {
 background: #3498db;
 transform: rotate(360deg) translateY(-100px);
}

.sec-hand,
.min-hand,
.hr-hand {
 position: absolute;
}

.sec-hand,
.sec {
 height: 180px;
 width: 180px;
 z-index: 6;
}

.min-hand,
.min {
 height: 140px;
 width: 140px;
 z-index: 5;
}

.hr-hand,
.hr {
 height: 110px;
 width: 110px;
 z-index: 4;
}

.sec,
.min,
.hr {
 display: flex;
 justify-content: center;
 position: absolute;
}

.sec:before {
 position: absolute;
 content: &apos;&apos;;
 height: 110px;
 width: 3px;
 background: #3498db;
}

.sec:after {
 position: absolute;
 content: &apos;&apos;;
 height: 35px;
 width: 7px;
 background: #3498db;
 top: 105px;
 border-radius: 5px;
}

.min:before {
 position: absolute;
 content: &apos;&apos;;
 width: 1px;
 top: -15px;
 border-left: 3px solid transparent;
 border-right: 3px solid transparent;
 border-bottom: 60px solid #e95949;
}

.min:after {
 position: absolute;
 content: &apos;&apos;;
 width: 3px;
 top: 40px;
 border-left: 2px solid transparent;
 border-right: 2px solid transparent;
 border-top: 30px solid #e95949;
}

.hr:before {
 position: absolute;
 content: &apos;&apos;;
 width: 1px;
 border-left: 3px solid transparent;
 border-right: 3px solid transparent;
 border-bottom: 35px solid #303030;
}

.hr:after {
 position: absolute;
 content: &apos;&apos;;
 width: 3px;
 top: 34px;
 border-left: 2px solid transparent;
 border-right: 2px solid transparent;
 border-top: 25px solid #303030;
}
&lt;/style&gt;

 &lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;

 
 
&lt;/head&gt;

&lt;body translate=&quot;no&quot;&gt;
 &lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; dir=&quot;ltr&quot;&gt;

&lt;head&gt;
 &lt;meta charset=&quot;utf-8&quot;&gt;
 &lt;title&gt;Neumorphism Analog Clock&lt;/title&gt;
 &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;
&lt;/head&gt;

&lt;body&gt;
 &lt;div class=&quot;clock&quot;&gt;
 &lt;div class=&quot;center-nut&quot;&gt;&lt;/div&gt;
 &lt;div class=&quot;center-nut2&quot;&gt;&lt;/div&gt;
 &lt;div class=&quot;indicators&quot;&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;div&gt;&lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;sec-hand&quot;&gt;
 &lt;div class=&quot;sec&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;min-hand&quot;&gt;
 &lt;div class=&quot;min&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;hr-hand&quot;&gt;
 &lt;div class=&quot;hr&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;script&gt;
 const sec = document.querySelector(&quot;.sec&quot;);
 const min = document.querySelector(&quot;.min&quot;);
 const hr = document.querySelector(&quot;.hr&quot;);
 setInterval(function() {
 let time = new Date();
 let secs = time.getSeconds() * 6;
 let mins = time.getMinutes() * 6;
 let hrs = time.getHours() * 30;
 sec.style.transform = `rotateZ(${secs}deg)`;
 min.style.transform = `rotateZ(${mins}deg)`;
 hr.style.transform = `rotateZ(${hrs+(mins/12)}deg)`;
 });
 &lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;
 
 
 
&lt;/body&gt;

&lt;/html&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/12-1-0-1699</link>
			<category>საათები საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/12-1-0-1699</guid>
			<pubDate>Fri, 22 Nov 2024 05:32:00 GMT</pubDate>
		</item>
		<item>
			<title>ძალიან ლამაზი ვარსკვლავური რეიტინგის სკრიპტი</title>
			<description>&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://saiti-arqivi.ucoz.com/_tbkp/chemi_saitis_reitingi_magariaaaaaa.jpg&quot; style=&quot;width: 707px; height: 89px;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;დაყენების ინსტრუქცია:&amp;nbsp; შეხვალთ კონტროლ პანელში, შემდეგ დიზაინის მართვა, ვირჩევთ იმ გვერდს სადაც კომენტარების გვერძე არის&amp;nbsp; რეიტინგის ვარსკვლავები, და ამ გრაფაში &amp;nbsp;{страница&amp;nbsp; материала и комментариев к нему} მთლიან სკრიპტში ვშლით სკიპტის გრაფას ამგვარს-&amp;nbsp;&lt;span style=&quot;color:#ff0000;&quot;&gt;&lt;?if($RATING$)?&amp;gt;&lt;span class=&quot;ed-sep&quot;&amp;gt; | &lt;/span&amp;gt;&lt;span class=&quot;e-rating&quot;&amp;gt;&lt;span class=&quot;ed-title&quot;&amp;gt;&lt;!--&lt;s3119&amp;gt;--&amp;gt;რეიტინგი&lt;!--&lt;/s&amp;gt;--&amp;gt;:&lt;/span&amp;gt; &lt;span class=&quot;ed-value&quot;&amp;gt;&lt;span id=&quot;entRating$ID$&quot;&amp;gt;$RATING$&lt;/span&amp;gt;/&lt;span id=&quot;entRated$ID$&quot;&amp;gt;$RATED$&lt;/span&amp;gt;&lt;/span&amp;gt;&lt;/span&amp;gt;&lt;?endif?&amp;gt;&lt;/td&amp;gt;&lt;/tr&amp;gt; &lt;/span&gt;&lt;span style=&quot;color:#000000;&quot;&gt;და მის მაგივრად ვსვავთ ქვემოთ მოყვანილ კოდს...&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;script&gt;
function copyToClipboard() {
 var copyText = document.getElementById(&quot;myInput&quot;);
 copyText.select();
 document.execCommand(&quot;Copy&quot;); 
}
&lt;/script&gt;
&lt;p&gt;&lt;textarea cols=&quot;50&quot; id=&quot;myInput&quot; rows=&quot;4&quot;&gt;&lt;!-- შექნილის ადმინი გელას მიერ, Best-Studio --&gt; 
 &lt;style&gt; 
 div.gf { 
 margin: 10px 0px 10px 0px; 
 padding: 5px 10px 5px 10px; 
 border: 1px solid #eee9e0; 
 background: #eee9e0; 
 text-align:#000000; 
 } 
 &lt;/style&gt; 

 &lt;div class=&quot;gf&quot;&gt; 
 &lt;div style=&quot;background:url(&apos;https://saiti-arqivi.ucoz.com/&apos;);padding:4px;margin-bottom:3px;font-weight:bold;color:#eee9e0;&quot;&gt; რეიტინგი $ENTRY_TITLE$:&lt;/div&gt; 
 &lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt; 
 &lt;?$RSTARS$(&apos;30&apos;,&apos;https://zornet.ru/CSS-ZORNET/Skript/17.png&apos;,&apos;1&apos;)?&gt;&lt;/td&gt; 
 &lt;td style=&quot;padding-left:15px;&quot;&gt;რეიტინგი &lt;shadoow&gt;&lt;font style=&quot;font-size:11px;&quot;&gt;&lt;? $RATING$*1 ?&gt;&lt;/font&gt;&lt;/shadoow&gt;&lt;font style=&quot;color:#000000;&quot;&gt;/5 დან &lt;/font&gt;&lt;br&gt;&lt;i&gt;ხმა მისცა: &lt;font style=&quot;color:#000000;&quot;&gt;$RATED$-მა ადამიანმა&lt;/font&gt;&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; 
 &lt;/div&gt; 
 &lt;link type=&quot;text/css&quot; rel=&quot;StyleSheet&quot; href=&quot;https://saiti-arqivi.ucoz.com/&quot; /&gt;
&lt;/textarea&gt;&lt;/p&gt;

&lt;p&gt;&lt;button onclick=&quot;copyToClipboard()&quot;&gt;დააკოპირეთ&lt;/button&gt;&lt;/p&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/23-1-0-1682</link>
			<category>რეიტინგი საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/23-1-0-1682</guid>
			<pubDate>Sun, 17 Nov 2024 00:33:55 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი საათი ჩემი საიტისათვის {საჩვენებელი}</title>
			<description>&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; /&gt;&lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; /&gt;
&lt;link color=&quot;#111&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; /&gt;
&lt;title&gt;&lt;/title&gt;
&lt;link href=&quot;https://codepen.io/kittywei/pen/qErBKm&quot; rel=&quot;canonical&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;div,span{padding: 0;margin: 0;}
#main-clock{
 width: 200px;
 margin: 0 auto;
 position: relative
}
#dial-wrap{
 width:200px;
 height: 190px;
 padding-top: 10px;
 border-radius: 50%;
 position: relative;
 z-index: 2;
 background: #996600; /* Old browsers */
 background: -moz-radial-gradient(center, ellipse cover, #996600 0%, #996600 62%, #ffcc00 76%, #896d00 86%); /* FF3.6+ */
 background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#996600), color-stop(62%,#996600), color-stop(76%,#ffcc00), color-stop(86%,#896d00)); /* Chrome,Safari4+ */
 background: -webkit-radial-gradient(center, ellipse cover, #996600 0%,#996600 62%,#ffcc00 76%,#896d00 86%); /* Chrome10+,Safari5.1+ */
 background: -o-radial-gradient(center, ellipse cover, #996600 0%,#996600 62%,#ffcc00 76%,#896d00 86%); /* Opera 12+ */
 background: -ms-radial-gradient(center, ellipse cover, #996600 0%,#996600 62%,#ffcc00 76%,#896d00 86%); /* IE10+ */
 background: radial-gradient(ellipse at center, #996600 0%,#996600 62%,#ffcc00 76%,#896d00 86%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&apos;#996600&apos;, endColorstr=&apos;#896d00&apos;,GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#dial-wrap:after{
 content: &quot;&quot;;
 display: block;
 width: 8px;
 height: 8px;
 border-radius: 50%;
 position: absolute;
 left: 50%;
 top: 50%;
 margin: -4px 0 0 -4px;
 background: #ffffff; /* Old browsers */
 background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #585858 100%); /* FF3.6+ */
 background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#585858)); /* Chrome,Safari4+ */
 background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#585858 100%); /* Chrome10+,Safari5.1+ */
 background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#585858 100%); /* Opera 12+ */
 background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#585858 100%); /* IE10+ */
 background: radial-gradient(ellipse at center, #ffffff 0%,#585858 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&apos;#ffffff&apos;, endColorstr=&apos;#585858&apos;,GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#dial{
 font-size: 15px;
 font-family: arial; sans-serif;
 color: #000;
 border-radius: 50%;
 width: 180px;
 height: 180px;
 margin: 0 auto;
 position: relative;
 background: #a4a4a4; /* Old browsers */
 background: -moz-linear-gradient(-45deg, #a4a4a4 0%, #ffffff 100%); /* FF3.6+ */
 background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#a4a4a4), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
 background: -webkit-linear-gradient(-45deg, #a4a4a4 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
 background: -o-linear-gradient(-45deg, #a4a4a4 0%,#ffffff 100%); /* Opera 11.10+ */
 background: -ms-linear-gradient(-45deg, #a4a4a4 0%,#ffffff 100%); /* IE10+ */
 background: linear-gradient(135deg, #a4a4a4 0%,#ffffff 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&apos;#a4a4a4&apos;, endColorstr=&apos;#ffffff&apos;,GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#dial span{display: block;position: absolute;}
.dial-num-12{left: 82px;top: 5px}
.dial-num-1{left: 128px;top: 15px}
.dial-num-2{left: 155px;top: 45px}
.dial-num-3{left: 165px;top: 90px}
.dial-num-4{left: 150px;top: 125px}
.dial-num-5{left: 125px;top: 150px}
.dial-num-6{left: 84px;top: 160px}
.dial-num-7{left: 46px;top: 150px}
.dial-num-8{left: 20px;top: 125px}
.dial-num-9{left: 5px;top: 90px}
.dial-num-10{left: 12px;top: 46px}
.dial-num-11{left: 40px;top: 15px}
#hour-hand{
 width: 60px;
 height: 5px;
 border-radius: 8px;
 background-color: #000;
 position: absolute;
 left: 42px;
 top: 98px;
 transform: rotate(7deg);
 -webkit-transform: rotate(7deg);
 -moz-transform: rotate(7deg);
 transform-origin: 100% 100% 0;
 -webkit-transform-origin: 100% 100% 0;
 -moz-transform-origin: 100% 100% 0;
}
#minute-hand{
 width: 70px;
 height: 4px;
 border-radius: 8px;
 background-color: #000;
 position: absolute;
 left: 102px;
 top: 100px;
 transform: rotate(65deg);
 -webkit-transform: rotate(65deg);
 -moz-transform: rotate(65deg);
 transform-origin: 0 0 0;
 -webkit-transform-origin: 0 0 0;
 -moz-transform-origin: 0 0 0;
}
#second-hand{
 width: 80px;
 height: 2px;
 border-radius: 5px;
 background-color: #000;
 position: absolute;
 left: 20px;
 top: 100px;
 transform: rotate(90deg);
 -webkit-transform: rotate(90deg);
 -moz-transform: rotate(90deg);
 transform-origin: 100% 50% 0;
 -webkit-transform-origin: 100% 50% 0;
 -moz-transform-origin: 100% 50% 0;
 -webkit-animation: secondHand 60s linear infinite; 
 -moz-animation: secondHand 60s linear infinite; 
 animation: secondHand 60s linear infinite;
}
#pendulum{
 width: 15px;
 height: 150px;
 margin: -10px auto 0;
 position: relative;
 z-index: 1;
 -webkit-animation: pendulum 2s cubic-bezier(.57,.07,.47,.84) infinite; 
 -moz-animation: pendulum 2s cubic-bezier(.57,.07,.47,.84) infinite; 
 animation: pendulum 2s cubic-bezier(.57,.07,.47,.84) infinite;
 transform-origin: 0 0 0;
 -webkit-transform-origin: 0 0 0;
 -moz-transform-origin: 0 0 0;
 background: #996600; /* Old browsers */
 background: -moz-linear-gradient(left, #996600 0%, #996600 46%, #f2bf00 78%, #fcc900 81%, #b69100 100%); /* FF3.6+ */
 background: -webkit-gradient(linear, left top, right top, color-stop(0%,#996600), color-stop(46%,#996600), color-stop(78%,#f2bf00), color-stop(81%,#fcc900), color-stop(100%,#b69100)); /* Chrome,Safari4+ */
 background: -webkit-linear-gradient(left, #996600 0%,#996600 46%,#f2bf00 78%,#fcc900 81%,#b69100 100%); /* Chrome10+,Safari5.1+ */
 background: -o-linear-gradient(left, #996600 0%,#996600 46%,#f2bf00 78%,#fcc900 81%,#b69100 100%); /* Opera 11.10+ */
 background: -ms-linear-gradient(left, #996600 0%,#996600 46%,#f2bf00 78%,#fcc900 81%,#b69100 100%); /* IE10+ */
 background: linear-gradient(to right, #996600 0%,#996600 46%,#f2bf00 78%,#fcc900 81%,#b69100 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&apos;#996600&apos;, endColorstr=&apos;#b69100&apos;,GradientType=1 ); /* IE6-9 */
}
#pendulum:after{
 content: &quot;&quot;;
 display: block;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 position: absolute;
 left: 50%;
 bottom: -30px;
 margin-left: -30px;
 background: #996600; /* Old browsers */
 background: -moz-radial-gradient(center, ellipse cover, #996600 0%, #d3a000 56%, #fdca00 63%, #786621 100%); /* FF3.6+ */
 background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#996600), color-stop(56%,#d3a000), color-stop(63%,#fdca00), color-stop(100%,#786621)); /* Chrome,Safari4+ */
 background: -webkit-radial-gradient(center, ellipse cover, #996600 0%,#d3a000 56%,#fdca00 63%,#786621 100%); /* Chrome10+,Safari5.1+ */
 background: -o-radial-gradient(center, ellipse cover, #996600 0%,#d3a000 56%,#fdca00 63%,#786621 100%); /* Opera 12+ */
 background: -ms-radial-gradient(center, ellipse cover, #996600 0%,#d3a000 56%,#fdca00 63%,#786621 100%); /* IE10+ */
 background: radial-gradient(ellipse at center, #996600 0%,#d3a000 56%,#fdca00 63%,#786621 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&apos;#996600&apos;, endColorstr=&apos;#786621&apos;,GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/*secondHand animation*/
@-webkit-keyframes secondHand {
 0%{
 -webkit-transform: rotate(90deg);
 }
 100%{
 -webkit-transform: rotate(450deg);
 }
} 
@-moz-keyframes secondHand { 
 0%{
 -moz-transform: rotate(90deg);
 }
 100%{
 -moz-transform: rotate(450deg);
 } 
} 
@keyframes secondHand { 
 0%{
 transform: rotate(90deg);
 }
 100%{
 transform: rotate(450deg);
 }
}

/*pendulum animation*/
@-webkit-keyframes pendulum {
 0%{
 -webkit-transform: rotate(-15deg);
 }
 50%{
 -webkit-transform: rotate(15deg);
 }
 100%{
 -webkit-transform: rotate(-15deg);
 }
} 
@-moz-keyframes pendulum { 
 0%{
 -moz-transform: rotate(-15deg);
 }
 50%{
 -moz-transform: rotate(15deg);
 }
 100%{
 -moz-transform: rotate(-15deg);
 }
} 
@keyframes pendulum { 
 0%{
 transform: rotate(-15deg);
 }
 50%{
 transform: rotate(15deg);
 }
 100%{
 transform: rotate(-15deg);
 }
}
&lt;/style&gt;
&lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;
&lt;div id=&quot;main-clock&quot;&gt;
&lt;div id=&quot;dial-wrap&quot;&gt;
&lt;div id=&quot;dial&quot;&gt;&lt;span class=&quot;dial-num-12&quot;&gt;12&lt;/span&gt; &lt;span class=&quot;dial-num-1&quot;&gt;1&lt;/span&gt; &lt;span class=&quot;dial-num-2&quot;&gt;2&lt;/span&gt; &lt;span class=&quot;dial-num-3&quot;&gt;3&lt;/span&gt; &lt;span class=&quot;dial-num-4&quot;&gt;4&lt;/span&gt; &lt;span class=&quot;dial-num-5&quot;&gt;5&lt;/span&gt; &lt;span class=&quot;dial-num-6&quot;&gt;6&lt;/span&gt; &lt;span class=&quot;dial-num-7&quot;&gt;7&lt;/span&gt; &lt;span class=&quot;dial-num-8&quot;&gt;8&lt;/span&gt; &lt;span class=&quot;dial-num-9&quot;&gt;9&lt;/span&gt; &lt;span class=&quot;dial-num-10&quot;&gt;10&lt;/span&gt; &lt;span class=&quot;dial-num-11&quot;&gt;11&lt;/span&gt;&lt;/div&gt;

&lt;div id=&quot;hour-hand&quot;&gt;&amp;nbsp;&lt;/div&gt;

&lt;div id=&quot;minute-hand&quot;&gt;&amp;nbsp;&lt;/div&gt;

&lt;div id=&quot;second-hand&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;

&lt;div id=&quot;pendulum&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/12-1-0-1653</link>
			<category>საათები საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/12-1-0-1653</guid>
			<pubDate>Sun, 10 Nov 2024 03:00:06 GMT</pubDate>
		</item>
		<item>
			<title>მაგარი მენიუ საიტისათვის {საჩვენებელი}</title>
			<description>&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png&quot; rel=&quot;apple-touch-icon&quot; type=&quot;image/png&quot; /&gt;&lt;meta name=&quot;apple-mobile-web-app-title&quot; content=&quot;CodePen&quot;&gt;
&lt;link href=&quot;https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; /&gt;
&lt;link color=&quot;#111&quot; href=&quot;https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg&quot; rel=&quot;mask-icon&quot; type=&quot;image/x-icon&quot; /&gt;&lt;script src=&quot;https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js&quot;&gt;&lt;/script&gt;
&lt;title&gt;&lt;/title&gt;
&lt;link href=&quot;https://codepen.io/ahmadbassamemran/pen/BPbVPe&quot; rel=&quot;canonical&quot; /&gt;&lt;meta name=&quot;keywords&quot; content=&quot;Developer, Designer, Menu, Hamburger Icons Animations, CSS3, HTML, Buttons, Web, animation, animations, hamburger, icon, icons, span, transition, transform &quot;&gt;
&lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot; /&gt;
&lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.2/css/all.min.css&quot; rel=&quot;stylesheet&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;@charset &quot;UTF-8&quot;;
body {
 padding: 0;
 margin: 0;
 background-color: #324252;
}

h1 {
 font-family: &quot;Century Gothic&quot;;
 margin: 30px auto 30px auto;
 color: #09fbd2;
 width: 100%;
 text-align: center;
}

ul.menu {
 padding: 0;
 list-style: none;
 width: 400px;
 margin: 20px auto;
 font-family: &quot;Century Gothic&quot;;
 box-shadow: 0px 0px 25px #00000070;
 clear: both;
 display: table;
 margin-bottom: 100px;
}
ul.menu .list {
 font-size: 14px;
 border-bottom: 1px solid #324252;
 position: relative;
 width: 100%;
 box-sizing: border-box;
 height: 50px;
 vertical-align: sub;
 background: #3e5165;
 clear: both;
}
ul.menu .list:after {
 content: &quot;&quot;;
 font-family: FontAwesome;
 position: absolute;
 right: 17px;
 top: 17px;
 padding: 0px 5px;
 color: #fff;
}
ul.menu .list:before {
 content: &quot;&quot;;
 font-family: FontAwesome;
 position: absolute;
 left: 17px;
 top: 17px;
 padding: 0px 5px;
 color: #fff;
}
ul.menu .list a {
 text-decoration: none;
 color: #fff;
 padding: 17px 0px 17px 45px;
 display: block;
 height: 100%;
 box-sizing: border-box;
}
ul.menu .list a:hover {
 background-color: #324252;
 transition: 300ms all;
 color: #09fbd2;
}
ul.menu .list .items {
 height: 0px;
 overflow: hidden;
}
ul.menu .list .items a {
 padding: 17px;
}
ul.menu .list .items a:hover {
 background-color: #3f5d79;
 color: #fff;
 transition: 300ms all;
}
ul.menu .list:last-child {
 border-bottom: none;
}
ul.menu .active:after {
 content: &quot;&quot;;
 font-family: FontAwesome;
 position: absolute;
 right: 17px;
 top: 17px;
 padding: 0px 5px;
 color: #fff;
}
ul.menu .active:before {
 content: &quot;&quot;;
 font-family: FontAwesome;
 position: absolute;
 left: 17px;
 top: 17px;
 padding: 0px 5px;
 color: #fff;
}
ul.menu .active &gt; .items {
 display: block;
 background: #23313f;
 padding: 0px;
 height: auto;
 color: #fff;
 transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
 transition: all 200ms;
 clear: both;
 float: left;
 width: 100%;
}
ul.menu .active &gt; .items li {
 padding: 0px;
 border-bottom: 1px solid #324252;
 list-style: none;
}
ul.menu .active &gt; .items li:last-child {
 border-color: transparent;
 padding-bottom: 0px;
}
ul.menu .active &gt; .items .active &gt; .items {
 background-color: #2f4b67;
}
ul.menu .active &gt; a {
 color: #46efa4;
 text-transform: uppercase;
 font-weight: bold;
}
ul.menu .active .list {
 background: #697d92;
}
ul.menu .active .list a {
 padding: 17px 0px 17px 45px;
}

/* footer */
footer {
 background-color: #222;
 color: #fff;
 font-size: 14px;
 bottom: 0;
 position: fixed;
 left: 0;
 right: 0;
 text-align: center;
 z-index: 999;
}

footer p {
 margin: 10px 0;
 font-family: &quot;Lucida Sans&quot;, &quot;Lucida Sans Regular&quot;, &quot;Lucida Grande&quot;, &quot;Lucida Sans Unicode&quot;, Geneva, Verdana, sans-serif;
}

footer .fa-heart {
 color: red;
}

footer .fa-dev {
 color: #fff;
}

footer .fa-twitter-square {
 color: #1da0f1;
}

footer .fa-instagram {
 color: #f0007c;
}

fotter .fa-linkedin {
 color: #0073b1;
}

footer .fa-codepen {
 color: #fff;
}

footer a {
 color: #3c97bf;
 text-decoration: none;
 margin-right: 5px;
}

.youtubeBtn {
 position: fixed;
 left: 50%;
 transform: translatex(-50%);
 bottom: 45px;
 cursor: pointer;
 transition: all 0.3s;
 vertical-align: middle;
 text-align: center;
 display: inline-block;
}

.youtubeBtn i {
 font-size: 20px;
 float: left;
}

.youtubeBtn a {
 color: #ff0000;
 text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
 animation: youtubeAnim 1000ms linear infinite;
 float: right;
}

.youtubeBtn a:hover {
 color: #c9110f;
 transition: all 0.3s ease-in-out;
 text-shadow: none;
}

.youtubeBtn i:active {
 transform: scale(0.9);
 transition: all 0.3s ease-in-out;
}

.youtubeBtn span {
 font-family: &quot;Lato&quot;;
 font-weight: bold;
 color: #fff;
 display: block;
 font-size: 12px;
 float: right;
 line-height: 20px;
 padding-left: 5px;
}

@keyframes youtubeAnim {
 0%, 100% {
 color: #c9110f;
 }
 50% {
 color: #ff0000;
 }
}
/* footer */
&lt;/style&gt;
&lt;script&gt;
 window.console = window.console || function(t) {};
&lt;/script&gt;
&lt;ul class=&quot;menu&quot;&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 1 &lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 1-1&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 1-2&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 1-3&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 2&lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 2-1 &lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 2-2 &lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 2-3 &lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 3&lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 3-1 &lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 3-2 &lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 3-2 &lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 4&lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-1 &lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-2 &lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 4-1&lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-1-1&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-1-2&lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;list&quot;&gt;&lt;a href=&quot;#&quot;&gt;List 4-2&lt;/a&gt;
 &lt;ul class=&quot;items&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-2-1&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4-2-2&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
&lt;/ul&gt;
&lt;script id=&quot;rendered-js&quot; &gt;
const list = document.querySelectorAll(&apos;.list&apos;);

function accordion(e) {
 e.stopPropagation();
 if (this.classList.contains(&apos;active&apos;)) {
 this.classList.remove(&apos;active&apos;);
 } else
 if (this.parentElement.parentElement.classList.contains(&apos;active&apos;)) {
 this.classList.add(&apos;active&apos;);
 } else
 {
 for (i = 0; i &lt; list.length; i++) {if (window.CP.shouldStopExecution(0)) break;
 list[i].classList.remove(&apos;active&apos;);
 }window.CP.exitedLoop(0);
 this.classList.add(&apos;active&apos;);
 }
}
for (i = 0; i &lt; list.length; i++) {if (window.CP.shouldStopExecution(1)) break;
 list[i].addEventListener(&apos;click&apos;, accordion);
}window.CP.exitedLoop(1);
//# sourceURL=pen.js
 &lt;/script&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/6-1-0-1629</link>
			<category>მენიუ საიტისთვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/6-1-0-1629</guid>
			<pubDate>Wed, 06 Nov 2024 02:54:38 GMT</pubDate>
		</item>
		<item>
			<title>რეიტინგი ვარსკვლავებით (ნიმუში)</title>
			<description>&lt;style type=&quot;text/css&quot;&gt;.u-star-rating-30 { list-style:none; margin:0px; padding:0px; width:150px; height:30px; position:relative; background: url(&apos;/.s/img/stars/3/30.png&apos;) top left repeat-x }
 .u-star-rating-30 li{ padding:0px; margin:0px; float:left }
 .u-star-rating-30 li a { display:block;width:30px;height: 30px;line-height:30px;text-decoration:none;text-indent:-9000px;z-index:20;position:absolute;padding: 0px;overflow:hidden }
 .u-star-rating-30 li a:hover { background: url(&apos;/.s/img/stars/3/30.png&apos;) left center;z-index:2;left:0px;border:none }
 .u-star-rating-30 a.u-one-star { left:0px }
 .u-star-rating-30 a.u-one-star:hover { width:30px }
 .u-star-rating-30 a.u-two-stars { left:30px }
 .u-star-rating-30 a.u-two-stars:hover { width:60px }
 .u-star-rating-30 a.u-three-stars { left:60px }
 .u-star-rating-30 a.u-three-stars:hover { width:90px }
 .u-star-rating-30 a.u-four-stars { left:90px }
 .u-star-rating-30 a.u-four-stars:hover { width:120px }
 .u-star-rating-30 a.u-five-stars { left:120px }
 .u-star-rating-30 a.u-five-stars:hover { width:150px }
 .u-star-rating-30 li.u-current-rating { top:0 !important; left:0 !important;margin:0 !important;padding:0 !important;outline:none;background: url(&apos;/.s/img/stars/3/30.png&apos;) left bottom;position: absolute;height:30px !important;line-height:30px !important;display:block;text-indent:-9000px;z-index:1 }
&lt;/style&gt;
&lt;script&gt;
 var usrarids = {};
 function ustarrating(id, mark) {
 if (!usrarids[id]) {
 usrarids[id] = 1;
 $(&quot;.u-star-li-&quot;+id).hide();
 _uPostForm(&apos;&apos;, {type:&apos;POST&apos;, url:&apos;/stuff/&apos;, data:{
 &apos;a&apos;:&apos;65&apos;,
 &apos;id&apos;:id,
 &apos;mark&apos;:mark,
 &apos;mod&apos;:&apos;stuff&apos;,
 &apos;ajax&apos;:&apos;2&apos;
 }});
 }
 }
 &lt;/script&gt;
&lt;ul class=&quot;uStarRating2043 u-star-rating-30&quot; id=&quot;uStarRating2043&quot; title=&quot;Рейтинг: 4.8/5&quot;&gt;
 &lt;li class=&quot;u-current-rating uCurStarRating2043&quot; id=&quot;uCurStarRating2043&quot; style=&quot;width:100%;&quot;&gt;&amp;nbsp;&lt;/li&gt;
 &lt;li class=&quot;u-star-li-2043&quot;&gt;&lt;a class=&quot;u-one-star&quot; href=&quot;https://saiti-arqivi.ucoz.com/board/23-1-0-1611&quot; onclick=&quot;ustarrating(&apos;2043&apos;, 1); return false;&quot;&gt;1&lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;u-star-li-2043&quot;&gt;&lt;a class=&quot;u-two-stars&quot; href=&quot;https://saiti-arqivi.ucoz.com/board/23-1-0-1611&quot; onclick=&quot;ustarrating(&apos;2043&apos;, 2); return false;&quot;&gt;2&lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;u-star-li-2043&quot;&gt;&lt;a class=&quot;u-three-stars&quot; href=&quot;https://saiti-arqivi.ucoz.com/board/23-1-0-1611&quot; onclick=&quot;ustarrating(&apos;2043&apos;, 3); return false;&quot;&gt;3&lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;u-star-li-2043&quot;&gt;&lt;a class=&quot;u-four-stars&quot; href=&quot;https://saiti-arqivi.ucoz.com/board/23-1-0-1611&quot; onclick=&quot;ustarrating(&apos;2043&apos;, 4); return false;&quot;&gt;4&lt;/a&gt;&lt;/li&gt;
 &lt;li class=&quot;u-star-li-2043&quot;&gt;&lt;a class=&quot;u-five-stars&quot; href=&quot;https://saiti-arqivi.ucoz.com/board/23-1-0-1611&quot; onclick=&quot;ustarrating(&apos;2043&apos;, 5); return false;&quot;&gt;5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class=&quot;shop-itempage-rating-text&quot;&gt;&lt;!--&lt;s3119&gt;--&gt;რეიტინგი&lt;!--&lt;/s&gt;--&gt;: &lt;b&gt;&lt;span id=&quot;entRating86&quot;&gt;5.0&lt;/span&gt;&lt;/b&gt;/&lt;span id=&quot;entRated86&quot;&gt;1&lt;/span&gt;&lt;/div&gt;</description>
			
			<link>https://saiti-arqivi.ucoz.com/board/23-1-0-1611</link>
			<category>რეიტინგი საიტისათვის</category>
			<dc:creator></dc:creator>
			<guid>https://saiti-arqivi.ucoz.com/board/23-1-0-1611</guid>
			<pubDate>Tue, 05 Nov 2024 01:03:09 GMT</pubDate>
		</item>
	</channel>
</rss>