Adding a few requested icons changes:
* Add Night Version of Icons * Add Solid Black Icons * Add Solid White Icons Fixes issue #2
74
README.md
@@ -5,7 +5,7 @@ Weather Underground Icons
|
|||||||
|
|
||||||
These icons were created by the Graphic Designer [Ashley Jager](http://www.ajager.com/#/weather-underground/). She released these icons in a beautiful [Adobe Illustrator](https://dribbble.com/shots/1879422-Weather-Underground-Icons) file. This project simply breaks that AI file up into web friendly icons that can be used in your projects.
|
These icons were created by the Graphic Designer [Ashley Jager](http://www.ajager.com/#/weather-underground/). She released these icons in a beautiful [Adobe Illustrator](https://dribbble.com/shots/1879422-Weather-Underground-Icons) file. This project simply breaks that AI file up into web friendly icons that can be used in your projects.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Demo Website
|
Demo Website
|
||||||
---
|
---
|
||||||
@@ -58,6 +58,24 @@ All CSS Icons will default to using SVG files. However, you can use PNG sprites
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### Icon Class Day & Night:
|
||||||
|
|
||||||
|
* Default is to use Day Icons
|
||||||
|
|
||||||
|
```html
|
||||||
|
<i class="wu wu-black wu-32 wu-clear"></i>
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
* `wu-night` to use Night Icons
|
||||||
|
|
||||||
|
```html
|
||||||
|
<i class="wu wu-white wu-32 wu-clear wu-night"></i>
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Icon Class Sizes:
|
### Icon Class Sizes:
|
||||||
|
|
||||||
* `wu-16` 16x16px icons
|
* `wu-16` 16x16px icons
|
||||||
@@ -100,7 +118,7 @@ All CSS Icons will default to using SVG files. However, you can use PNG sprites
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
Icon Key
|
Day Icon Key
|
||||||
---
|
---
|
||||||
|
|
||||||
Here are the `icon` options for each weather option:
|
Here are the `icon` options for each weather option:
|
||||||
@@ -128,9 +146,55 @@ ICON | KEY | DESCRIPTION
|
|||||||
 | tstorms | Thunderstorms
|
 | tstorms | Thunderstorms
|
||||||
 | unknown | Unknown
|
 | unknown | Unknown
|
||||||
|
|
||||||
Icon Preview
|
|
||||||
|
Night Icon Key
|
||||||
---
|
---
|
||||||
|
|
||||||

|
Here are the `icon` options for each weather option:
|
||||||
|
|
||||||

|
ICON | KEY | DESCRIPTION
|
||||||
|
---- | --- | -----------
|
||||||
|
 | chanceflurries | Chance of Flurries
|
||||||
|
 | chancerain | Chance of Rain
|
||||||
|
 | chancesleet | Chance Freezing Rain
|
||||||
|
 | chancesnow | Chance of Snow
|
||||||
|
 | chancetstorms | Chance of Thunderstorms
|
||||||
|
 | clear | Clear
|
||||||
|
 | cloudy | Cloudy
|
||||||
|
 | flurries | Flurries
|
||||||
|
 | fog | Fog
|
||||||
|
 | hazy | Haze
|
||||||
|
 | mostlycloudy | Mostly Cloudy
|
||||||
|
 | mostlysunny | Mostly Sunny
|
||||||
|
 | partlycloudy | Partly Cloudy
|
||||||
|
 | partlysunny | Partly Sunny
|
||||||
|
 | rain | Rain
|
||||||
|
 | sleet | Freezing Rain
|
||||||
|
 | snow | Snow
|
||||||
|
 | sunny | Sunny
|
||||||
|
 | tstorms | Thunderstorms
|
||||||
|
 | unknown | Unknown
|
||||||
|
|
||||||
|
|
||||||
|
Day Icon Preview
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
Night Icon Preview
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|||||||
36
css/demo.css
@@ -55,27 +55,27 @@ body {
|
|||||||
font-family: 'Ubuntu', sans-serif;
|
font-family: 'Ubuntu', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white {
|
body.demo-white, body.demo-solid-white {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-black {
|
body.demo-black, body.demo-solid-black {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white *::-moz-selection {
|
body.demo-white *::-moz-selection, body.demo-solid-white *::-moz-selection {
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white *::selection {
|
body.demo-white *::selection, body.demo-soli-white *::selection {
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-black *::-moz-selection {
|
body.demo-black *::-moz-selection, body.demo-solid-black *::-moz-selection {
|
||||||
background: rgba(0, 0, 0, 0.05);
|
background: rgba(0, 0, 0, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-black *::selection {
|
body.demo-black *::selection, body.demo-solid-black *::selection {
|
||||||
background: #FFF;
|
background: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,17 +104,17 @@ select:active, select:focus {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white .author-info a {
|
body.demo-white .author-info a, body.demo-solid-white .author-info a {
|
||||||
color: rgba(255, 255, 255, 0.5);
|
color: rgba(255, 255, 255, 0.5);
|
||||||
}
|
}
|
||||||
body.demo-black .author-info a {
|
body.demo-black .author-info a, body.demo-solid-black .author-info a {
|
||||||
color: rgba(0, 0, 0, 0.5);
|
color: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white .author-info a:hover {
|
body.demo-white .author-info a:hover, body.demo-solid-white .author-info a:hover {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
body.demo-black .author-info a:hover {
|
body.demo-black .author-info a:hover, body.demo-solid-black .author-info a:hover {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,11 +124,11 @@ body.demo-black .author-info a:hover {
|
|||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-white {
|
.demo-white, .demo-solid-white {
|
||||||
background: #262a33;
|
background: #262a33;
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-black {
|
.demo-black, .demo-solid-black {
|
||||||
background: #f3f7f9;
|
background: #f3f7f9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -137,11 +137,11 @@ body.demo-black .author-info a:hover {
|
|||||||
transition: background-color 0.25s linear;
|
transition: background-color 0.25s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-white i:hover, .demo-white i.active {
|
.demo-white i:hover, .demo-white i.active, .demo-solid-white i:hover, .demo-solid-white i.active {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-black i:hover, .demo-black i.active {
|
.demo-black i:hover, .demo-black i.active, .demo-solid-black i:hover, .demo-solid-black i.active {
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -182,11 +182,11 @@ body.demo-black .author-info a:hover {
|
|||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.demo-white .header div.options span {
|
body.demo-white .header div.options span, body.demo-solid-white .header div.options span {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
color: rgba(255, 255, 255, 0.25);
|
color: rgba(255, 255, 255, 0.25);
|
||||||
}
|
}
|
||||||
body.demo-black .header div.options span {
|
body.demo-black .header div.options span, body.demo-solid-black .header div.options span {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
color: rgba(0, 0, 0, 0.25);
|
color: rgba(0, 0, 0, 0.25);
|
||||||
}
|
}
|
||||||
@@ -217,11 +217,11 @@ body.demo-black .header div.options span {
|
|||||||
border: 0;
|
border: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
body.demo-black .github-corner svg {
|
body.demo-black .github-corner svg, body.demo-solid-black .github-corner svg {
|
||||||
fill: #262a33;
|
fill: #262a33;
|
||||||
color: #f3f7f9;
|
color: #f3f7f9;
|
||||||
}
|
}
|
||||||
body.demo-white .github-corner svg {
|
body.demo-white .github-corner svg, body.demo-solid-white .github-corner svg {
|
||||||
fill: #f3f7f9;
|
fill: #f3f7f9;
|
||||||
color: #262a33;
|
color: #262a33;
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
dist/icons/black/icon-preview-nt.png
vendored
Normal file
|
After Width: | Height: | Size: 175 KiB |
BIN
dist/icons/black/icon-preview.png
vendored
Executable file → Normal file
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 206 KiB |
BIN
dist/icons/black/png/128x128/_nt_spritesheet.png
vendored
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
dist/icons/black/png/128x128/_spritesheet.png
vendored
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 68 KiB |
BIN
dist/icons/black/png/128x128/nt_chanceflurries.png
vendored
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
dist/icons/black/png/128x128/nt_chancerain.png
vendored
Executable file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
dist/icons/black/png/128x128/nt_chancesleet.png
vendored
Executable file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
dist/icons/black/png/128x128/nt_chancesnow.png
vendored
Executable file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
dist/icons/black/png/128x128/nt_chancetstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
dist/icons/black/png/128x128/nt_clear.png
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
dist/icons/black/png/128x128/nt_cloudy.png
vendored
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
dist/icons/black/png/128x128/nt_flurries.png
vendored
Executable file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
dist/icons/black/png/128x128/nt_fog.png
vendored
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
dist/icons/black/png/128x128/nt_hazy.png
vendored
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
dist/icons/black/png/128x128/nt_mostlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
dist/icons/black/png/128x128/nt_mostlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
dist/icons/black/png/128x128/nt_partlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
dist/icons/black/png/128x128/nt_partlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
dist/icons/black/png/128x128/nt_rain.png
vendored
Executable file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
dist/icons/black/png/128x128/nt_sleet.png
vendored
Executable file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
dist/icons/black/png/128x128/nt_snow.png
vendored
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
dist/icons/black/png/128x128/nt_sunny.png
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
dist/icons/black/png/128x128/nt_tstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
dist/icons/black/png/128x128/nt_unknown.png
vendored
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
dist/icons/black/png/16x16/_nt_spritesheet.png
vendored
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
dist/icons/black/png/16x16/_spritesheet.png
vendored
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 6.7 KiB |
BIN
dist/icons/black/png/16x16/nt_chanceflurries.png
vendored
Executable file
|
After Width: | Height: | Size: 370 B |
BIN
dist/icons/black/png/16x16/nt_chancerain.png
vendored
Executable file
|
After Width: | Height: | Size: 398 B |
BIN
dist/icons/black/png/16x16/nt_chancesleet.png
vendored
Executable file
|
After Width: | Height: | Size: 394 B |
BIN
dist/icons/black/png/16x16/nt_chancesnow.png
vendored
Executable file
|
After Width: | Height: | Size: 393 B |
BIN
dist/icons/black/png/16x16/nt_chancetstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 414 B |
BIN
dist/icons/black/png/16x16/nt_clear.png
vendored
Normal file
|
After Width: | Height: | Size: 462 B |
BIN
dist/icons/black/png/16x16/nt_cloudy.png
vendored
Executable file
|
After Width: | Height: | Size: 263 B |
BIN
dist/icons/black/png/16x16/nt_flurries.png
vendored
Executable file
|
After Width: | Height: | Size: 436 B |
BIN
dist/icons/black/png/16x16/nt_fog.png
vendored
Executable file
|
After Width: | Height: | Size: 305 B |
BIN
dist/icons/black/png/16x16/nt_hazy.png
vendored
Executable file
|
After Width: | Height: | Size: 305 B |
BIN
dist/icons/black/png/16x16/nt_mostlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
dist/icons/black/png/16x16/nt_mostlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 442 B |
BIN
dist/icons/black/png/16x16/nt_partlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 442 B |
BIN
dist/icons/black/png/16x16/nt_partlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
dist/icons/black/png/16x16/nt_rain.png
vendored
Executable file
|
After Width: | Height: | Size: 438 B |
BIN
dist/icons/black/png/16x16/nt_sleet.png
vendored
Executable file
|
After Width: | Height: | Size: 416 B |
BIN
dist/icons/black/png/16x16/nt_snow.png
vendored
Executable file
|
After Width: | Height: | Size: 309 B |
BIN
dist/icons/black/png/16x16/nt_sunny.png
vendored
Normal file
|
After Width: | Height: | Size: 462 B |
BIN
dist/icons/black/png/16x16/nt_tstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 501 B |
BIN
dist/icons/black/png/16x16/nt_unknown.png
vendored
Executable file
|
After Width: | Height: | Size: 306 B |
BIN
dist/icons/black/png/256x256/_nt_spritesheet.png
vendored
Normal file
|
After Width: | Height: | Size: 183 KiB |
BIN
dist/icons/black/png/256x256/_spritesheet.png
vendored
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 190 KiB |
BIN
dist/icons/black/png/256x256/nt_chanceflurries.png
vendored
Executable file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
dist/icons/black/png/256x256/nt_chancerain.png
vendored
Executable file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
dist/icons/black/png/256x256/nt_chancesleet.png
vendored
Executable file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
dist/icons/black/png/256x256/nt_chancesnow.png
vendored
Executable file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
dist/icons/black/png/256x256/nt_chancetstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
dist/icons/black/png/256x256/nt_clear.png
vendored
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
dist/icons/black/png/256x256/nt_cloudy.png
vendored
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
dist/icons/black/png/256x256/nt_flurries.png
vendored
Executable file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
dist/icons/black/png/256x256/nt_fog.png
vendored
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
dist/icons/black/png/256x256/nt_hazy.png
vendored
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
dist/icons/black/png/256x256/nt_mostlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
dist/icons/black/png/256x256/nt_mostlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
dist/icons/black/png/256x256/nt_partlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
dist/icons/black/png/256x256/nt_partlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
dist/icons/black/png/256x256/nt_rain.png
vendored
Executable file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
dist/icons/black/png/256x256/nt_sleet.png
vendored
Executable file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
dist/icons/black/png/256x256/nt_snow.png
vendored
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
dist/icons/black/png/256x256/nt_sunny.png
vendored
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
dist/icons/black/png/256x256/nt_tstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
dist/icons/black/png/256x256/nt_unknown.png
vendored
Executable file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
dist/icons/black/png/32x32/_nt_spritesheet.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
dist/icons/black/png/32x32/_spritesheet.png
vendored
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 15 KiB |
BIN
dist/icons/black/png/32x32/nt_chanceflurries.png
vendored
Executable file
|
After Width: | Height: | Size: 531 B |
BIN
dist/icons/black/png/32x32/nt_chancerain.png
vendored
Executable file
|
After Width: | Height: | Size: 583 B |
BIN
dist/icons/black/png/32x32/nt_chancesleet.png
vendored
Executable file
|
After Width: | Height: | Size: 565 B |
BIN
dist/icons/black/png/32x32/nt_chancesnow.png
vendored
Executable file
|
After Width: | Height: | Size: 582 B |
BIN
dist/icons/black/png/32x32/nt_chancetstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 550 B |
BIN
dist/icons/black/png/32x32/nt_clear.png
vendored
Normal file
|
After Width: | Height: | Size: 1008 B |
BIN
dist/icons/black/png/32x32/nt_cloudy.png
vendored
Executable file
|
After Width: | Height: | Size: 386 B |
BIN
dist/icons/black/png/32x32/nt_flurries.png
vendored
Executable file
|
After Width: | Height: | Size: 582 B |
BIN
dist/icons/black/png/32x32/nt_fog.png
vendored
Executable file
|
After Width: | Height: | Size: 424 B |
BIN
dist/icons/black/png/32x32/nt_hazy.png
vendored
Executable file
|
After Width: | Height: | Size: 424 B |
BIN
dist/icons/black/png/32x32/nt_mostlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 823 B |
BIN
dist/icons/black/png/32x32/nt_mostlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 983 B |
BIN
dist/icons/black/png/32x32/nt_partlycloudy.png
vendored
Normal file
|
After Width: | Height: | Size: 983 B |
BIN
dist/icons/black/png/32x32/nt_partlysunny.png
vendored
Normal file
|
After Width: | Height: | Size: 823 B |
BIN
dist/icons/black/png/32x32/nt_rain.png
vendored
Executable file
|
After Width: | Height: | Size: 595 B |
BIN
dist/icons/black/png/32x32/nt_sleet.png
vendored
Executable file
|
After Width: | Height: | Size: 619 B |
BIN
dist/icons/black/png/32x32/nt_snow.png
vendored
Executable file
|
After Width: | Height: | Size: 452 B |
BIN
dist/icons/black/png/32x32/nt_sunny.png
vendored
Normal file
|
After Width: | Height: | Size: 1008 B |
BIN
dist/icons/black/png/32x32/nt_tstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 731 B |
BIN
dist/icons/black/png/32x32/nt_unknown.png
vendored
Executable file
|
After Width: | Height: | Size: 451 B |
BIN
dist/icons/black/png/64x64/_nt_spritesheet.png
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
dist/icons/black/png/64x64/_spritesheet.png
vendored
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 31 KiB |
BIN
dist/icons/black/png/64x64/nt_chanceflurries.png
vendored
Executable file
|
After Width: | Height: | Size: 825 B |
BIN
dist/icons/black/png/64x64/nt_chancerain.png
vendored
Executable file
|
After Width: | Height: | Size: 988 B |
BIN
dist/icons/black/png/64x64/nt_chancesleet.png
vendored
Executable file
|
After Width: | Height: | Size: 917 B |
BIN
dist/icons/black/png/64x64/nt_chancesnow.png
vendored
Executable file
|
After Width: | Height: | Size: 1008 B |
BIN
dist/icons/black/png/64x64/nt_chancetstorms.png
vendored
Executable file
|
After Width: | Height: | Size: 947 B |
BIN
dist/icons/black/png/64x64/nt_clear.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |