-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
index.html
84 lines (71 loc) · 2.76 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="keywords" content="weather icons,animated icons,animated weather icons,svg animation,meteocons,weather,open source weather icons,icon pack,icons"/>
<meta name="description" content="A free to use set of weather icons that are simple and animated."/>
<meta name="robots" content="index,follow"/>
<meta name="revisit-after" content="1 day"/>
<meta name="author" content="Bas Milius"/>
<title>Weather Icons by Bas</title>
<link rel="stylesheet" href="https://unpkg.com/@latte-ui/[email protected]/dist/latte-ui.css" type="text/css"/>
<link rel="stylesheet" href="https://font.mili.us/css2?family=jetbrains-mono-variable:ital" type="text/css"/>
<style>
body
{
font-family: jetbrains-mono, monospace;
}
.wi-title
{
display: inline-block;
margin-top: 0;
margin-bottom: 30px;
padding-bottom: 12px;
border-bottom: 4px solid hsl(var(--primary-500));
font-size: 24px;
font-weight: 700;
}
</style>
</head>
<body class="bg-gray-50">
<main id="app">
<div class="container my-7 md:my-10">
<div class="row mb-10">
<div class="col-12 lg:col-6 px-7 sm:px-4 lg:py-10">
<h1 class="wi-title">Meteocons 2.1</h1>
<p class="lead">
These hand crafted icons are designed in Adobe Illustrator and animated with
SVG animations. They will look stunning in your work.
</p>
<p>
The icons are available under a MIT-license, which means that it's free to
use. The only requirement is that you should preserve copyright notices in
all source files.
</p>
<a href="https://github.com/basmilius/weather-icons" rel="noopener" target="_blank" class="btn btn-contained is-primary mt-5">
<span>View on GitHub</span>
</a>
<a href="https://bas.dev" rel="noopener" target="_blank" class="btn btn-outline bg-gray-0 is-primary mt-5">
<span class="text-gray-700">bas.dev</span>
</a>
</div>
</div>
<div class="row">
<div class="col-6 lg:col-4">
<a href="fill.html" class="panel bg-gray-0 rounded-1 shadow-2 d-flex flex-column align-items-center p-7">
<img src="production/fill/svg/clear-day.svg" alt="Filled icon style" height="120"/>
<span class="h5">Filled</span>
</a>
</div>
<div class="col-6 lg:col-4">
<a href="line.html" class="panel bg-gray-0 rounded-1 shadow-2 d-flex flex-column align-items-center p-7">
<img src="production/line/svg/clear-day.svg" alt="Outlined icon style" height="120"/>
<span class="h5">Outlined</span>
</a>
</div>
</div>
</div>
</main>
</body>
</html>