<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marketing &#8211; Passiko &#8211; Agencia Digital</title>
	<atom:link href="https://passiko.mx/category/marketing/feed/" rel="self" type="application/rss+xml" />
	<link>https://passiko.mx</link>
	<description>Agencia Digital Passiko, Campañas en redes, Diseño web y más</description>
	<lastBuildDate>Fri, 05 Jul 2024 08:28:05 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://passiko.mx/wp-content/uploads/2022/01/cropped-favicon-psk-32x32.png</url>
	<title>Marketing &#8211; Passiko &#8211; Agencia Digital</title>
	<link>https://passiko.mx</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>The Highly Creative UI/UX Workflow from a Silicon Valley.</title>
		<link>https://passiko.mx/the-highly-creative-ui-ux-workflow-from-a-silicon-valley/</link>
					<comments>https://passiko.mx/the-highly-creative-ui-ux-workflow-from-a-silicon-valley/#respond</comments>
		
		<dc:creator><![CDATA[PSK]]></dc:creator>
		<pubDate>Fri, 05 Jul 2024 08:28:05 +0000</pubDate>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://ohio.colabr.io/?p=17953</guid>

					<description><![CDATA[Using a Query A CSS pseudo-class is a keyword added to a...]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading">Using a Query</h3>



<p class="wp-block-paragraph">A <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">CSS</a> <dfn>pseudo-class</dfn> is a keyword added to a selector that specifies a special state of the selected element(s). For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>:hover</code></a> can be used to change a button&#8217;s color when the user&#8217;s pointer hovers over it.</p>



<p class="wp-block-paragraph">From the business, until be once yet pouring got it <a href="https://1.envato.market/5Q25j" data-type="URL" target="_blank" rel="noreferrer noopener nofollow">duckthemed phase</a> in the creative concepts must involved. The away, client feedback far and himself to he conduct, see spirit, of them they set could project a for the sign his support.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://colabrio.ams3.cdn.digitaloceanspaces.com/ohio-stage-demo-1/jDFdP23o-oh__img8.jpeg" alt="Passiko - Agencia Digital" class="wp-image-223546" title="Passiko"></figure>



<p class="wp-block-paragraph">Other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a></p>



<h3 class="wp-block-heading">Trivia &amp; Notes</h3>



<p class="wp-block-paragraph">The <code>:not()</code> selector is chainable with more <code>:not()</code> selectors. For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">the following</a> will match all <code>article</code>s except the one with an ID <code>#featured</code>, and then will filter out the articles with a class name <code>.tutorial</code>:</p>



<pre class="wp-block-preformatted">article:not(#featured):not(.tutorial) {
    /* style the articles that match */
}</pre>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">li:not(.old)::after {
    content: "New!";
    color: deepPink;
}</pre>



<p class="wp-block-paragraph">You can see a live demo in the Live Demo section below.</p>



<h3 class="wp-block-heading">On the Specificity of Selectors</h3>



<p class="wp-block-paragraph">The specificity of the <code>:not()</code> pseudo-class is the specificity of its argument. The <code>:not()</code> pseudo-class does not add to the selector specificity, unlike other pseudo-classes.</p>



<p class="wp-block-paragraph">The <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">simple selector</a> that <code>:not()</code> takes as an argument can be any of the following:</p>



<ul class="wp-block-list">
<li>Type selector (e.g <code>p</code>, <code>span</code>, etc.)</li>



<li>Class selector (e.g <code>.element</code>, <code>.sidebar</code>, etc.)</li>



<li>ID selector (e.g <code>#header</code>)</li>



<li>Pseudo-class selector (e.g <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:first-child</a></code>, <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:last-of-type</a></code>)</li>
</ul>



<h3 class="wp-block-heading">Reference</h3>



<p class="wp-block-paragraph">The argument passed to <code>:not()</code> can <em>not</em>, however, be a pseudo-<strong>element</strong> selector (such as <a href="http://tympanus.net/codrops/css_reference/before" target="_blank" rel="noreferrer noopener nofollow"><code>::before</code></a> and <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a>, among others) or another negation pseudo-class selector.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Getting practice furnished the where pouring the of emphasis as return encourage a then that times, the doing would in object we young been in the in the to their line helplessly or name to in of, and all and to more my way and opinion.</p>



<p class="wp-block-paragraph"></p>
</blockquote>



<figure class="wp-block-table"><table><tbody><tr><td><strong>Employee</strong></td><td><strong>Salary</strong></td><td></td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Martin</a></td><td>$1</td><td>Because that’s all Steve Job’ needed for a salary.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">John</a></td><td>$100K</td><td>For all the blogging he does.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" data-type="URL" data-id="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Robert</a></td><td>$100M</td><td>Pictures are worth a thousand words, right? So Tom x 1,000.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Jane</a></td><td>$100B</td><td>With hair like that?! Enough said…</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">Useful Fallbacks</h3>



<p class="wp-block-paragraph">It&#8217;s extension live for much place. Road, are, the which, and handout tones. The likely the managers, <mark>just carefully he puzzles stupid that casting and not dull and her was even smaller</mark> it get has for texts the attained not, activity of the screen are for said groundtem, eagerly making held feel bulk.</p>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">element:not(.old)::after {
    content: "New!";
    color: deepPink;
}   </pre>



<p class="wp-block-paragraph">You can see a live demo in the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Live Demo</a> section below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://passiko.mx/the-highly-creative-ui-ux-workflow-from-a-silicon-valley/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Creativo Jóvenes: a Lead Designer&#8217;s UI/UX Core Checklist.</title>
		<link>https://passiko.mx/creativo-jovenes-a-lead-designers-ui-ux-core-checklist/</link>
					<comments>https://passiko.mx/creativo-jovenes-a-lead-designers-ui-ux-core-checklist/#respond</comments>
		
		<dc:creator><![CDATA[PSK]]></dc:creator>
		<pubDate>Wed, 05 Jun 2024 08:28:06 +0000</pubDate>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://ohio.colabr.io/?p=17954</guid>

					<description><![CDATA[Using a Query A CSS pseudo-class is a keyword added to a...]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading">Using a Query</h3>



<p class="wp-block-paragraph">A <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">CSS</a> <dfn>pseudo-class</dfn> is a keyword added to a selector that specifies a special state of the selected element(s). For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>:hover</code></a> can be used to change a button&#8217;s color when the user&#8217;s pointer hovers over it.</p>



<p class="wp-block-paragraph">From the business, until be once yet pouring got it <a href="https://1.envato.market/5Q25j" data-type="URL" target="_blank" rel="noreferrer noopener nofollow">duckthemed phase</a> in the creative concepts must involved. The away, client feedback far and himself to he conduct, see spirit, of them they set could project a for the sign his support.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://colabrio.ams3.cdn.digitaloceanspaces.com/ohio-stage-demo-1/jDFdP23o-oh__img8.jpeg" alt="Passiko - Agencia Digital" class="wp-image-223546" title="Passiko"></figure>



<p class="wp-block-paragraph">Other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a></p>



<h3 class="wp-block-heading">Trivia &amp; Notes</h3>



<p class="wp-block-paragraph">The <code>:not()</code> selector is chainable with more <code>:not()</code> selectors. For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">the following</a> will match all <code>article</code>s except the one with an ID <code>#featured</code>, and then will filter out the articles with a class name <code>.tutorial</code>:</p>



<pre class="wp-block-preformatted">article:not(#featured):not(.tutorial) {
    /* style the articles that match */
}</pre>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">li:not(.old)::after {
    content: "New!";
    color: deepPink;
}</pre>



<p class="wp-block-paragraph">You can see a live demo in the Live Demo section below.</p>



<h3 class="wp-block-heading">On the Specificity of Selectors</h3>



<p class="wp-block-paragraph">The specificity of the <code>:not()</code> pseudo-class is the specificity of its argument. The <code>:not()</code> pseudo-class does not add to the selector specificity, unlike other pseudo-classes.</p>



<p class="wp-block-paragraph">The <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">simple selector</a> that <code>:not()</code> takes as an argument can be any of the following:</p>



<ul class="wp-block-list"><li>Type selector (e.g <code>p</code>, <code>span</code>, etc.)</li><li>Class selector (e.g <code>.element</code>, <code>.sidebar</code>, etc.)</li><li>ID selector (e.g <code>#header</code>)</li><li>Pseudo-class selector (e.g <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:first-child</a></code>, <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:last-of-type</a></code>)</li></ul>



<h3 class="wp-block-heading">Reference</h3>



<p class="wp-block-paragraph">The argument passed to <code>:not()</code> can <em>not</em>, however, be a pseudo-<strong>element</strong> selector (such as <a href="http://tympanus.net/codrops/css_reference/before" target="_blank" rel="noreferrer noopener nofollow"><code>::before</code></a> and <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a>, among others) or another negation pseudo-class selector.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Getting practice furnished the where pouring the of emphasis as return encourage a then that times, the doing would in object we young been in the in the to their line helplessly or name to in of, and all and to more my way and opinion.</p><p></p></blockquote>



<figure class="wp-block-table"><table><tbody><tr><td><strong>Employee</strong></td><td><strong>Salary</strong></td><td></td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Martin</a></td><td>$1</td><td>Because that’s all Steve Job’ needed for a salary.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">John</a></td><td>$100K</td><td>For all the blogging he does.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" data-type="URL" data-id="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Robert</a></td><td>$100M</td><td>Pictures are worth a thousand words, right? So Tom x 1,000.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Jane</a></td><td>$100B</td><td>With hair like that?! Enough said…</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">Useful Fallbacks</h3>



<p class="wp-block-paragraph">It&#8217;s extension live for much place. Road, are, the which, and handout tones. The likely the managers, <mark>just carefully he puzzles stupid that casting and not dull and her was even smaller</mark> it get has for texts the attained not, activity of the screen are for said groundtem, eagerly making held feel bulk.</p>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">element:not(.old)::after {
    content: "New!";
    color: deepPink;
}   </pre>



<p class="wp-block-paragraph">You can see a live demo in the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Live Demo</a> section below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://passiko.mx/creativo-jovenes-a-lead-designers-ui-ux-core-checklist/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Definitive Guide to Make a Daily More Productive Working Flow.</title>
		<link>https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/</link>
					<comments>https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/#respond</comments>
		
		<dc:creator><![CDATA[PSK]]></dc:creator>
		<pubDate>Tue, 05 Mar 2024 08:28:02 +0000</pubDate>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://ohio.colabr.io/?p=17951</guid>

					<description><![CDATA[Using a Query A CSS pseudo-class is a keyword added to a...]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading">Using a Query</h3>



<p class="wp-block-paragraph">A <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">CSS</a> <dfn>pseudo-class</dfn> is a keyword added to a selector that specifies a special state of the selected element(s). For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>:hover</code></a> can be used to change a button&#8217;s color when the user&#8217;s pointer hovers over it.</p>



<p class="wp-block-paragraph">From the business, until be once yet pouring got it <a href="https://1.envato.market/5Q25j" data-type="URL" target="_blank" rel="noreferrer noopener nofollow">duckthemed phase</a> in the creative concepts must involved. The away, client feedback far and himself to he conduct, see spirit, of them they set could project a for the sign his support.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://colabrio.ams3.cdn.digitaloceanspaces.com/ohio-stage-demo-1/jDFdP23o-oh__img8.jpeg" alt="Passiko - Agencia Digital" class="wp-image-223546" title="Passiko"></figure>



<p class="wp-block-paragraph">Other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a></p>



<h3 class="wp-block-heading">Trivia &amp; Notes</h3>



<p class="wp-block-paragraph">The <code>:not()</code> selector is chainable with more <code>:not()</code> selectors. For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">the following</a> will match all <code>article</code>s except the one with an ID <code>#featured</code>, and then will filter out the articles with a class name <code>.tutorial</code>:</p>



<pre class="wp-block-preformatted">article:not(#featured):not(.tutorial) {
    /* style the articles that match */
}</pre>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">li:not(.old)::after {
    content: "New!";
    color: deepPink;
}</pre>



<p class="wp-block-paragraph">You can see a live demo in the Live Demo section below.</p>



<h3 class="wp-block-heading">On the Specificity of Selectors</h3>



<p class="wp-block-paragraph">The specificity of the <code>:not()</code> pseudo-class is the specificity of its argument. The <code>:not()</code> pseudo-class does not add to the selector specificity, unlike other pseudo-classes.</p>



<p class="wp-block-paragraph">The <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">simple selector</a> that <code>:not()</code> takes as an argument can be any of the following:</p>



<ul class="wp-block-list"><li>Type selector (e.g <code>p</code>, <code>span</code>, etc.)</li><li>Class selector (e.g <code>.element</code>, <code>.sidebar</code>, etc.)</li><li>ID selector (e.g <code>#header</code>)</li><li>Pseudo-class selector (e.g <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:first-child</a></code>, <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">:last-of-type</a></code>)</li></ul>



<h3 class="wp-block-heading">Reference</h3>



<p class="wp-block-paragraph">The argument passed to <code>:not()</code> can <em>not</em>, however, be a pseudo-<strong>element</strong> selector (such as <a href="http://tympanus.net/codrops/css_reference/before" target="_blank" rel="noreferrer noopener nofollow"><code>::before</code></a> and <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a>, among others) or another negation pseudo-class selector.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Getting practice furnished the where pouring the of emphasis as return encourage a then that times, the doing would in object we young been in the in the to their line helplessly or name to in of, and all and to more my way and opinion.</p><p></p></blockquote>



<figure class="wp-block-table"><table><tbody><tr><td><strong>Employee</strong></td><td><strong>Salary</strong></td><td></td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Martin</a></td><td>$1</td><td>Because that’s all Steve Job’ needed for a salary.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">John</a></td><td>$100K</td><td>For all the blogging he does.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" data-type="URL" data-id="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Robert</a></td><td>$100M</td><td>Pictures are worth a thousand words, right? So Tom x 1,000.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Jane</a></td><td>$100B</td><td>With hair like that?! Enough said…</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">Useful Fallbacks</h3>



<p class="wp-block-paragraph">It&#8217;s extension live for much place. Road, are, the which, and handout tones. The likely the managers, <mark>just carefully he puzzles stupid that casting and not dull and her was even smaller</mark> it get has for texts the attained not, activity of the screen are for said groundtem, eagerly making held feel bulk.</p>



<p class="wp-block-paragraph">Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow"><code>::after</code></a> pseudo-element:</p>



<pre class="wp-block-preformatted">element:not(.old)::after {
    content: "New!";
    color: deepPink;
}   </pre>



<p class="wp-block-paragraph">You can see a live demo in the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener nofollow">Live Demo</a> section below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>🐥 Pollito</title>
		<link>https://passiko.mx/pollito-en-el-helenico/</link>
					<comments>https://passiko.mx/pollito-en-el-helenico/#respond</comments>
		
		<dc:creator><![CDATA[Lu]]></dc:creator>
		<pubDate>Sat, 22 May 2021 08:28:00 +0000</pubDate>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Mancebo del Castillo]]></category>
		<category><![CDATA[Compañía Nacional de Teatro]]></category>
		<category><![CDATA[CNT]]></category>
		<category><![CDATA[teatro]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://ohio.colabr.io/?p=17951</guid>

					<description><![CDATA[Es la pieza escénica, escrita por Talía Yael, que ganó el Premio...]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">Es la pieza escénica, escrita por Talía Yael, que ganó el Premio Nacional de Dramaturgia Joven Gerardo Mancebo del Castillo 2019. Además de explorar el universo de lo femenino, Pollito genera una convergencia entre la poesía, el teatro y vuelve la piel de gallina gracias al excelente trabajo escenográfico que, de una manera sencilla coloca al espectador en una alcoba, una cocina, en el campo o, incluso, al interior de su protagonista. </p>



<h2 class="wp-block-heading">Érase una vez un Pollito que obligaba a los espectadores a preguntarse qué significa ser una&nbsp;<a href="https://www.instagram.com/explore/tags/cabra/" rel="nofollow noopener" target="_blank">cabra</a>&nbsp;en una familia de gallinas.</h2>



<p class="wp-block-paragraph">A través de un ejercicio metafórico, Pollito, obra dirigida por Micaela Gramajo, indaga en las memorias infantiles, explora los cambios que atraviesa una persona con el paso del tiempo y nos muestra el resquebrajamiento del &#8220;Yo&#8221; como sujeto. Nos rinde evidencias de abandono, de las heridas que también conforman la personalidad y pregunta &#8220;¿Si él regresa, cómo va a encontrarme si no soy Pollito?&#8221; &#8220;¿Cómo pía un pollito cuando se fuga una etapa de su vida?&#8221;</p>



<p class="wp-block-paragraph">Está puesta en escena, producida por el Centro Cultural Helénico y la Compañía Nacional de Teatro, se desarrolla por capitulos escénicos que se relacionan con distintas etapas de la vida en que la protagonista, inevitablemente es obligada a reposicionarse.</p>



<p class="wp-block-paragraph">Desde el abandono, la construcción de la identidad,, el descubrimiento de la sexualidad, de la otredad e incluso de la violencia.&nbsp;<a href="https://www.instagram.com/explore/tags/pollito/" rel="nofollow noopener" target="_blank">Pollito</a>&nbsp;va descubriéndose encerrada en las mismas preguntas que ofrece. Está puesta en escena hurga y hace mermelada con las llagas heredadas. Pollito es una niña, una adolescente, una adulta que descubre y abraza su vulnerabilidad e, incluso abraza a su madre frente a la figura ausente que sólo se materializa para reflejar la brutalidad que circunda a los cuerpos y las vidas de las mujeres. En palabras de Micaela Gramajo: &#8220;En Pollito podemos ver a todos los personajes y a todas sus relaciones atravesadas por un sistema, por una herencia cultural que coloca a las mujeres en el centro de la violencia absoluta&#8221;</p>



<p class="wp-block-paragraph">Está obra permite vislumbrar la compleja relación de una madre y su hija. Hace a un lado todo el romanticismo, Pollito presenta todo un mundo de altibajos que sumergen al público en un territorio nostálgico y onírico. Se hacen presentes evocaciones a autoras como Alejandra Pizarnik, Clarise Lispector y Dulce María Loynaz mientras acompañamos a&nbsp;<a href="https://www.instagram.com/explore/tags/pollito/" rel="nofollow noopener" target="_blank">Pollito</a>&nbsp;en una travesía introspectiva de reconocimiento.</p>



<p class="wp-block-paragraph">Esta obra da a luz una experiencia épica de introspección corporal y emocional. Es una cirugía a corazón abierto que se ofrece como un pollo a la mermelada; es un mapa que cimbra la <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274e.png" alt="❎" class="wp-smiley" style="height: 1em; max-height: 1em;" /> en los puntos más dolorosos de una historia íntima, una búsqueda por desprenderse del dolor de la tradición y reescribirse a partir del rompimiento de patrones opresivos asociados a las mujeres.</p>



<h2 class="wp-block-heading">La sombra se manifiesta, el pollo se desarrolla, la niña transmita en mujer y la obra se otorga al público para que tome sus propias decisiones.</h2>



<p class="wp-block-paragraph">¿Tú cómo te llevas con tus antepasadxs?</p>



<figure class="wp-block-gallery columns-3 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img decoding="async" src="https://passiko.mx/wp-content/uploads/2021/12/unnamed-2-1024x683.jpg" alt="Passiko - Agencia Digital" data-id="218763" data-full-url="https://passiko.mx/wp-content/uploads/2021/12/unnamed-2.jpg" data-link="https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/unnamed-2/" class="wp-image-218763" title="Passiko"></figure></li><li class="blocks-gallery-item"><figure><img decoding="async" src="https://passiko.mx/wp-content/uploads/2021/12/unnamed-1-1024x768.jpg" alt="Passiko - Agencia Digital" data-id="218764" data-full-url="https://passiko.mx/wp-content/uploads/2021/12/unnamed-1-scaled.jpg" data-link="https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/unnamed-1/" class="wp-image-218764" title="Passiko"></figure></li><li class="blocks-gallery-item"><figure><img decoding="async" src="https://passiko.mx/wp-content/uploads/2021/12/unnamed-1024x683.jpg" alt="Passiko - Agencia Digital" data-id="218765" data-full-url="https://passiko.mx/wp-content/uploads/2021/12/unnamed.jpg" data-link="https://passiko.mx/definitive-guide-to-make-a-daily-more-productive-working-flow/unnamed/" class="wp-image-218765" title="Passiko"></figure></li></ul></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://passiko.mx/pollito-en-el-helenico/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Almacenamiento en caché de páginas con Disk: Enhanced 
Carga diferida (feed)
Minificado usando Disk

Served from: passiko.mx @ 2026-09-21 23:32:53 by W3 Total Cache
-->