BIN
docs/51a402ced656eeea80dcb3b08a0ac425.png
Normal file
BIN
docs/51a402ced656eeea80dcb3b08a0ac425.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
9
docs/6c831ee080ce0f905632cb113dfa17d9.css
Normal file
9
docs/6c831ee080ce0f905632cb113dfa17d9.css
Normal file
File diff suppressed because one or more lines are too long
30
docs/6c831ee080ce0f905632cb113dfa17d9.js
Normal file
30
docs/6c831ee080ce0f905632cb113dfa17d9.js
Normal file
File diff suppressed because one or more lines are too long
BIN
docs/e4fdfce991c164037b4cd78667aa2afd.png
Normal file
BIN
docs/e4fdfce991c164037b4cd78667aa2afd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
File diff suppressed because one or more lines are too long
43
index.html
43
index.html
@ -30,6 +30,7 @@
|
|||||||
</section>
|
</section>
|
||||||
<section data-type="visual" class="sidebar__section">
|
<section data-type="visual" class="sidebar__section">
|
||||||
<h4 class="sidebar__section-heading">visual</h4>
|
<h4 class="sidebar__section-heading">visual</h4>
|
||||||
|
<a class="sidebar__link" href="#circle"><span>Circle</span></a>
|
||||||
<a class="sidebar__link" href="#custom-scrollbar"><span>Custom scrollbar</span></a>
|
<a class="sidebar__link" href="#custom-scrollbar"><span>Custom scrollbar</span></a>
|
||||||
<a class="sidebar__link" href="#custom-text-selection"><span>Custom text selection</span></a>
|
<a class="sidebar__link" href="#custom-text-selection"><span>Custom text selection</span></a>
|
||||||
<a class="sidebar__link" href="#etched-text"><span>Etched text</span></a>
|
<a class="sidebar__link" href="#etched-text"><span>Etched text</span></a>
|
||||||
@ -243,6 +244,48 @@
|
|||||||
|
|
||||||
<!-- tags: layout -->
|
<!-- tags: layout -->
|
||||||
</div>
|
</div>
|
||||||
|
<div class="snippet">
|
||||||
|
<h3 id="circle"><span>Circle</span><span class="tags__tag snippet__tag" data-type="visual"><i data-feather="eye"></i>visual</span></h3>
|
||||||
|
<p>Creates a circle shape with pure CSS.</p>
|
||||||
|
<h4 data-type="HTML">HTML</h4><pre><code class="lang-html"><div class="circle"></div>
|
||||||
|
</code></pre>
|
||||||
|
<h4 data-type="CSS">CSS</h4><pre><code class="lang-css">.circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
</code></pre>
|
||||||
|
<h4>Demo</h4>
|
||||||
|
<div class="snippet-demo">
|
||||||
|
<div class="snippet-demo__circle"></div>
|
||||||
|
</div>
|
||||||
|
<style>
|
||||||
|
.snippet-demo__circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<h4>Explanation</h4>
|
||||||
|
<p><code>border-radius: 50%</code> curves the borders of an element to create a circle.</p>
|
||||||
|
<p>Since a circle has the same radius at any given point, the <code>width</code> and <code>height</code> must be the same. Differing values will create an ellipse.</p>
|
||||||
|
<h4>Browser support</h4>
|
||||||
|
<div>
|
||||||
|
<div class="snippet__browser-support">
|
||||||
|
95.0%
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><span class="snippet__support-note">✅ No caveats.</span></p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://caniuse.com/#feat=border-radius" target="_blank">https://caniuse.com/#feat=border-radius</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- tags: visual -->
|
||||||
|
</div>
|
||||||
<div class="snippet">
|
<div class="snippet">
|
||||||
<h3 id="clearfix"><span>Clearfix</span><span class="tags__tag snippet__tag" data-type="layout"><i data-feather="layout"></i>layout</span></h3>
|
<h3 id="clearfix"><span>Clearfix</span><span class="tags__tag snippet__tag" data-type="layout"><i data-feather="layout"></i>layout</span></h3>
|
||||||
<p>Ensures that an element self-clears its children.</p>
|
<p>Ensures that an element self-clears its children.</p>
|
||||||
|
|||||||
50
snippets/circle.md
Normal file
50
snippets/circle.md
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
### Circle
|
||||||
|
|
||||||
|
Creates a circle shape with pure CSS.
|
||||||
|
|
||||||
|
#### HTML
|
||||||
|
|
||||||
|
```html
|
||||||
|
<div class="circle"></div>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### CSS
|
||||||
|
|
||||||
|
```css
|
||||||
|
.circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Demo
|
||||||
|
|
||||||
|
<div class="snippet-demo">
|
||||||
|
<div class="snippet-demo__circle"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.snippet-demo__circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
#### Explanation
|
||||||
|
|
||||||
|
`border-radius: 50%` curves the borders of an element to create a circle.
|
||||||
|
|
||||||
|
Since a circle has the same radius at any given point, the `width` and `height` must be the same. Differing
|
||||||
|
values will create an ellipse.
|
||||||
|
|
||||||
|
#### Browser support
|
||||||
|
|
||||||
|
<span class="snippet__support-note">✅ No caveats.</span>
|
||||||
|
|
||||||
|
* https://caniuse.com/#feat=border-radius
|
||||||
|
|
||||||
|
<!-- tags: visual -->
|
||||||
Reference in New Issue
Block a user