aboutsummaryrefslogtreecommitdiff
path: root/files/tr/web/css/_colon_root
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/tr/web/css/_colon_root
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/tr/web/css/_colon_root')
-rw-r--r--files/tr/web/css/_colon_root/index.html60
1 files changed, 0 insertions, 60 deletions
diff --git a/files/tr/web/css/_colon_root/index.html b/files/tr/web/css/_colon_root/index.html
deleted file mode 100644
index de77ef2a6a..0000000000
--- a/files/tr/web/css/_colon_root/index.html
+++ /dev/null
@@ -1,60 +0,0 @@
----
-title: ':root'
-slug: 'Web/CSS/:root'
-tags:
- - CSS
-translation_of: 'Web/CSS/:root'
----
-<div>{{CSSRef}}</div>
-
-<p><strong><code>:root</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/Pseudo-classes"> sözde-sınıfı</a> dökümanda bulunan kök elemanı yerine geçer (yani onu temel alır). Örneğin HTML'de <code>:root</code> dökümanı oluşturan {{HTMLElement("html")}} öğesini temsil eder ve <code>html</code> seçicisi ile aynıdır, ancak <a href="/en-US/docs/Web/CSS/Specificity">önceliği</a> daha yüksektir.</p>
-
-<pre class="brush: css no-line-numbers">/* Dökümandaki kök elemanı seçer:
- Bu HTML'de &lt;html&gt; oluyor. */
-:root {
- background: royalblue;
-}</pre>
-
-<h2 id="Sözdizimi">Sözdizimi</h2>
-
-{{csssyntax}}
-
-<h2 id="Örnek">Örnek</h2>
-
-<p><code>:root</code> global <a href="/en-US/docs/Web/CSS/Using_CSS_variables">CSS değişkenleri</a> tanımlarken kullanışlı olabilir:</p>
-
-<pre class="brush: css">:root {
- --ana-renk: green;
- --paragraf-boslugu: 5px 0;
-}
-</pre>
-
-<h2 id="Tanımlamalar">Tanımlamalar</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Tanımlama</th>
- <th scope="col">Durum</th>
- <th scope="col">Açıklama</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('CSS4 Selectors', '#root-pseudo', ':root')}}</td>
- <td>{{Spec2('CSS4 Selectors')}}</td>
- <td>Değişiklik yok.</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS3 Selectors', '#root-pseudo', ':root')}}</td>
- <td>{{Spec2('CSS3 Selectors')}}</td>
- <td>Başlangıç ​​tanımı.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Tarayıcı_Uyumluluğu">Tarayıcı Uyumluluğu</h2>
-
-
-
-<p>{{Compat("css.selectors.root")}}</p>