aboutsummaryrefslogtreecommitdiff
path: root/build/posts/macos-icon-css/index.html
blob: 3f2a41df46e3da078988c2b8ba74104db080085a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="color-scheme" content="dark light">
	<link rel="icon" href="data:,">
	<title>Create a Mac App Icon with Pure HTML and CSS</title>
	<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
	<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>

<nav>
	<a href="#menu">Menu &darr;</a>
</nav>

<main>
<h1 id="create-a-mac-app-icon-with-pure-html-and-css">Create a Mac App Icon with Pure HTML and CSS</h1>
<p>2021-04-13</p>
<p>I have always been a huge fan of <a href="https://dribbble.com/bg-d">Bogdan&#8217;s work on Dribbble</a> and was recently inspired to see if I could replicate one of his awesome icon designs with only HTML &#38; CSS. What was the outcome? I think it&#8217;s a half-way decent copy - of course the original will always look significantly better.</p>
<p>Don&#8217;t care about reading through the tutorial? No problem! You can <a href="#demo">jump right down to the live demo</a></p>
<h2 id="the-comparison">The Comparison</h2>
<p>Let&#8217;s take a look at the original Dribbble shot:</p>
<p>And now let&#8217;s see what we will be creating with only HTML &#38; CSS:</p>
<p>Like I said - far from perfect but still a fun experiment!</p>
<h2 id="the-html">The HTML</h2>
<p>Let&#8217;s jump right in and build out the main skeleton of our project:</p>
<pre><code>&#60;div class="white-square"&#62;&#60;&#47;div&#62;
&#60;div class="blue-square"&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
    &#60;div class="row"&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
        &#60;div class="item"&#62;&#60;&#47;div&#62;
    &#60;&#47;div&#62;
&#60;&#47;div&#62;
&#60;div class="play-button"&#62;
    &#60;div class="triangle"&#62;&#60;&#47;div&#62;
&#60;&#47;div&#62;
</code></pre>
<ul>
<li><p>The <code>white-square</code> element is the white, rounded square in the background</p></li>
<li><p>The <code>blue-square</code> is the main blue square of the icon</p></li>
<li><p>The <code>row</code> elements inside the <code>blue-square</code> will be our individual <em>lines</em> spread across the icon</p></li>
<li><p>The <code>play-button</code> is obviously - the play button</p>
<p>Right now it will look like nothing, but we can change that by adding the most important part&#8230;</p></li>
</ul>
<h2 id="the-css">The CSS</h2>
<p>Pasting the entire CSS styling here would end up looking a little daunting. Instead, I&#8217;m just going to breakdown each individual section to make things more digestible.</p>
<h3 id="defaults-the-white-square">Defaults &#38; the White Square</h3>
<pre><code>* {
    box-sizing: border-box;
}
:root {
    --row-distance: 42px;
}

.white-square {
    background: white;
    border-radius: 105px;
    box-shadow: inset 0 -5px 8px rgba(0,0,0,0.25), 0 12px 10px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.1);
    height: 420px;
    left: 165px;
    position: absolute;
    transform: rotate(-8deg);
    top: 95px;
    width: 420px;
}
</code></pre>
<p>See that <code>--row-distance</code> variable? That will come into play a bit later. For now, we want to lay the Blue Square on top of this newly creating White Square:</p>
<pre><code>.blue-square {
    background: linear-gradient(#04BDFD 0%, #0585E4 100%);
    border-radius: 105px;
    box-shadow: inset 0 5px 8px rgba(255,255,255,0.5), inset 0 -5px 8px rgba(0,0,0,0.32), 0 12px 10px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.15);
    height: 420px;
    left: 205px;
    padding: 75px 0 0;
    position: absolute;
    top: 75px;
    width: 420px;
}
</code></pre>
<h2 id="targeting-the-inner-rows">Targeting the Inner Rows</h2>
<p>So far so good. The next part <em>looks</em> like a lot, but I assure you it&#8217;s fairly straightforward. We need to include each row inside the Blue Square like in the original Dribbble shot (7 total). First we start with the parent <code>row</code> styling:</p>
<pre><code>.blue-square .row {
    display: flex;
    height: 20px;
    justify-content: space-between;
    padding: 0 55px;
    position: absolute;
    width: 100%;
}
</code></pre>
<p>Now we style each individual row item via the <code>nth-of-type</code> attribute:</p>
<pre><code>.blue-square .row:nth-of-type(2) { margin-top: var(--row-distance); }
.blue-square .row:nth-of-type(2) .item:nth-of-type(odd) {
    width: 85px;
}
.blue-square .row:nth-of-type(2) .item:nth-of-type(even) {
    width: calc(100% - 100px);
}
.blue-square .row:nth-of-type(3) { margin-top: calc(var(--row-distance) * 2); }
.blue-square .row:nth-of-type(3) .item:nth-of-type(odd) {
    width: 115px;
}
.blue-square .row:nth-of-type(3) .item:nth-of-type(even) {
    width: calc(100% - 130px);
}
.blue-square .row:nth-of-type(4) { margin-top: calc(var(--row-distance) * 3); }
.blue-square .row:nth-of-type(4) .item:nth-of-type(odd) {
    width: 185px;
}
.blue-square .row:nth-of-type(4) .item:nth-of-type(even) {
    width: calc(100% - 200px);
}
.blue-square .row:nth-of-type(5) { margin-top: calc(var(--row-distance) * 4); width: calc(100% - 115px); }
.blue-square .row:nth-of-type(5) .item:nth-of-type(odd) {
    width: 105px;
}
.blue-square .row:nth-of-type(5) .item:nth-of-type(even) {
    width: calc(100% - 120px);
}
.blue-square .row:nth-of-type(6) { margin-top: calc(var(--row-distance) * 5); width: calc(100% - 140px); }
.blue-square .row:nth-of-type(6) .item:nth-of-type(odd) {
    width: 65px;
}
.blue-square .row:nth-of-type(6) .item:nth-of-type(even) {
    width: calc(100% - 80px);
}
.blue-square .row:nth-of-type(7) { margin-top: calc(var(--row-distance) * 6); width: calc(100% - 160px); }
.blue-square .row:nth-of-type(7) .item:nth-of-type(odd) {
    width: 40px;
}
.blue-square .row:nth-of-type(7) .item:nth-of-type(even) {
    width: calc(100% - 55px);
}
.blue-square .row .item {
    background: white;
    border-radius: 20px;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.06), inset 0 2px 4px rgba(255,255,255,0.1), 0 4px 6px rgba(0,0,0,0.05);
    width: 40px;
}
.blue-square .row .item:nth-of-type(even) {
    background: #3FC0F5;
    width: calc(100% - 55px);
}
</code></pre>
<p>Take a few moments to read everything over - it will help you better understand what&#8217;s going on. Basically, we are adding two inner elements to each row element. We calculate the <code>margin-top</code> distance by using that <code>--row-distance</code> variable I mentioned earlier. The inner elements are then styled based on their placement inside the row (<code>nth-of-type</code>).</p>
<h3 id="the-play-button">The Play Button</h3>
<p>Now we finish things off with a much simpler element to style:</p>
<pre><code>.play-button {
    backdrop-filter: blur(6px);
    border-radius: 9999px;
    box-shadow: inset 0 4px 0 rgba(255,255,255,0.3), inset 0 20px 15px rgba(255,255,255,0.6), 0 8px 12px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    height: 220px;
    overflow: hidden;
    position: absolute;
    right: 140px;
    top: 320px;
    width: 220px;
}
.play-button::before {
    background: rgba(255,255,255,0.9);
    border-radius: 9999px;
    content:&#39;&#39;;
    filter: blur(40px);
    height: 150%;
    left: -25%;
    opacity: 0.8;
    position: absolute;
    top: -25%;
    width: 150%;
}

.triangle {
    position: absolute;
    left: calc(50% - 2em);
    background-color: #315074;
    top: calc(50% - 2.1em);
    text-align: left;
}
.triangle:before,
.triangle:after {
    content: &#39;&#39;;
    position: absolute;
    background-color: inherit;
}
.triangle,
.triangle:before,
.triangle:after {
    width:  3.2em;
    height: 3.2em;
    border-top-right-radius: 30%;
}

.triangle {
    transform: rotate(-90deg) skewX(-30deg) scale(1,.866);
}
.triangle:before {
    transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
}
.triangle:after {
    transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
}
</code></pre>
<p>Thanks to <a href="https://m.nintendojo.fr/@meduz/106059826445460903">meduz</a> for pointing out the <code>backdrop-filter</code> property. This allows for a frosted glass look on Chromium &#38; Safari (although sadly not on Firefox). The <code>triangle</code> element could also be improved by using an embedded <code>SVG</code> but I was determined to use only CSS for this experiment :P</p>
<p>That&#8217;s really all there is to it! You can see the embedded CodePen example below or <a href="https://codepen.io/bradleytaunt/pen/bGgBRaV">check it out directly here &#8594;</a></p>
<hr/>
<h3 id="special-thanks">Special Thanks</h3>
<p>Thanks to Bogdan for letting me butcher the original Dribbble shot :D</p>
<ul>
<li><a href="http://bg-d.net/">bg-d.net</a></li>
<li><a href="https://dribbble.com/bg-d">Bogdan on Dribbble</a></li>
</ul>
<hr/>
<p><a href="https://codepen.io/bradleytaunt/pen/bGgBRaV">Live CodePen Demo</a></p>
<footer role="contentinfo">
    <h2>Menu Navigation</h2>
    <ul id="menu">
        <li><a href="/">Home</a></li>
        <li><a href="/projects">Projects</a></li>
        <li><a href="/uses">Uses</a></li>
        <li><a href="/wiki">Wiki</a></li>
        <li><a href="/resume">Resume</a></li>
        <li><a href="/colophon">Colophon</a></li>
        <li><a href="/now">Now</a></li>
        <li><a href="/donate">Donate</a></li>
        <li><a href="/atom.xml">RSS</a></li>
        <li><a href="#top">&uarr; Top of the page</a></li>
    </ul>
    <small>
        Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
        Maintained with ♥ for the web. <br>
        Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
        The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
    </small>
</footer>