material-osd 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/_includes/footer.html +57 -0
- data/_includes/head.html +45 -0
- data/_includes/nav.html +28 -0
- data/_includes/osd-home-nav-search.html +11 -0
- data/_includes/osd-home-section-header.html +14 -0
- data/_layouts/default.html +15 -0
- data/_layouts/home.html +24 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/base.scss +21 -0
- data/_sass/osd-home-section-header.scss +32 -0
- data/assets/css/main.scss +52 -0
- data/assets/icon-github.svg +1 -0
- data/assets/icon-twitter.svg +1 -0
- data/assets/img/logos/apple-touch-icon-144-precomposed.png +0 -0
- data/assets/img/logos/favicon.ico +0 -0
- data/assets/img/logos/osd-logo-home.svg +309 -0
- data/assets/img/osd-icons/osd-logo-icon.svg +148 -0
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb10bb329457d9e696bf288d5463c71b5d7a78ff
|
4
|
+
data.tar.gz: 55a58ffca16631876459685d6da1e83beac3c060
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bee06ec27c87b0639533dfa430cf919584040eece126fe1c4d4056f9eb7c1b1fe9f30e5c264bbcb916a0dbaefb5461e36fab94db01a400ecf235bcab6be849fc
|
7
|
+
data.tar.gz: 82c76a0768f363db344b33a65599887aa03d379825e5ec891e6b2b83eaa5cfba746ce601b2f75bdf9fccc79d2dd26f73fc7767ba305fbd96966331ee7af3b927
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 lucacorsato
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# material-osd
|
2
|
+
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your Jekyll site's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem "material-osd"
|
13
|
+
```
|
14
|
+
|
15
|
+
And add this line to your Jekyll site's `_config.yml`:
|
16
|
+
|
17
|
+
```yaml
|
18
|
+
theme: material-osd
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install material-osd
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## Development
|
38
|
+
|
39
|
+
To set up your environment to develop this theme, run `bundle install`.
|
40
|
+
|
41
|
+
You theme is setup just like a normal Jelyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
42
|
+
|
43
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
44
|
+
|
45
|
+
## License
|
46
|
+
|
47
|
+
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
48
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<footer class="mdl-mega-footer">
|
2
|
+
<div class="mdl-mega-footer__middle-section">
|
3
|
+
|
4
|
+
<div class="mdl-mega-footer__drop-down-section">
|
5
|
+
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
|
6
|
+
<h1 class="mdl-mega-footer__heading">Features</h1>
|
7
|
+
<ul class="mdl-mega-footer__link-list">
|
8
|
+
<li><a href="#">About</a></li>
|
9
|
+
<li><a href="#">Terms</a></li>
|
10
|
+
<li><a href="#">Partners</a></li>
|
11
|
+
<li><a href="#">Updates</a></li>
|
12
|
+
</ul>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="mdl-mega-footer__drop-down-section">
|
16
|
+
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
|
17
|
+
<h1 class="mdl-mega-footer__heading">Details</h1>
|
18
|
+
<ul class="mdl-mega-footer__link-list">
|
19
|
+
<li><a href="#">Specs</a></li>
|
20
|
+
<li><a href="#">Tools</a></li>
|
21
|
+
<li><a href="#">Resources</a></li>
|
22
|
+
</ul>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<div class="mdl-mega-footer__drop-down-section">
|
26
|
+
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
|
27
|
+
<h1 class="mdl-mega-footer__heading">Technology</h1>
|
28
|
+
<ul class="mdl-mega-footer__link-list">
|
29
|
+
<li><a href="#">How it works</a></li>
|
30
|
+
<li><a href="#">Patterns</a></li>
|
31
|
+
<li><a href="#">Usage</a></li>
|
32
|
+
<li><a href="#">Products</a></li>
|
33
|
+
<li><a href="#">Contracts</a></li>
|
34
|
+
</ul>
|
35
|
+
</div>
|
36
|
+
|
37
|
+
<div class="mdl-mega-footer__drop-down-section">
|
38
|
+
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
|
39
|
+
<h1 class="mdl-mega-footer__heading">FAQ</h1>
|
40
|
+
<ul class="mdl-mega-footer__link-list">
|
41
|
+
<li><a href="#">Questions</a></li>
|
42
|
+
<li><a href="#">Answers</a></li>
|
43
|
+
<li><a href="#">Contact us</a></li>
|
44
|
+
</ul>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
<div class="mdl-mega-footer__bottom-section">
|
50
|
+
<div class="mdl-logo">Title</div>
|
51
|
+
<ul class="mdl-mega-footer__link-list">
|
52
|
+
<li><a href="#">Help</a></li>
|
53
|
+
<li><a href="#">Privacy & Terms</a></li>
|
54
|
+
</ul>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
+
|
6
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
7
|
+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
|
+
|
9
|
+
<!-- ICON -->
|
10
|
+
{% if site.favicon %}
|
11
|
+
<link rel="shortcut icon" href="{{ site.url }}{{ site.baseurl }}/{{ site.favicon }}" type="image/x-icon">
|
12
|
+
{% endif %}
|
13
|
+
{% if site.touch_icon %}
|
14
|
+
<link rel="apple-touch-icon" href="{{ site.url }}{{ site.baseurl }}/{{ site.touch_icon }}">
|
15
|
+
{% endif %}
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
<!-- CSS -->
|
20
|
+
<link rel="stylesheet" href="{{ "{{ site.url }}{{ site.baseurl }}/assets/css/main.css" | prepend: site.baseurl }}">
|
21
|
+
|
22
|
+
|
23
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
|
24
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: full_base_url }}">
|
25
|
+
|
26
|
+
<!-- Material Design -->
|
27
|
+
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
28
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
29
|
+
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
|
30
|
+
<script defer src="https://code.getmdl.io/1.2.1/material.min.js"></script>
|
31
|
+
|
32
|
+
<!-- JQUERY-->
|
33
|
+
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
34
|
+
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
35
|
+
|
36
|
+
<!-- CAPTCHA -->
|
37
|
+
<script src='https://www.google.com/recaptcha/api.js'></script>
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
{% if jekyll.environment == 'production' and site.google_analytics %}
|
43
|
+
{% include google-analytics.html %}
|
44
|
+
{% endif %}
|
45
|
+
</head>
|
data/_includes/nav.html
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
<!-- Always shows a header, even in smaller screens. -->
|
2
|
+
<header class="mdl-layout__header">
|
3
|
+
<div class="mdl-layout__header-row">
|
4
|
+
<!-- Title -->
|
5
|
+
<span class="title mdl-layout-title">
|
6
|
+
<a href="{{ site.url }}{{ site.baseurl }}/">
|
7
|
+
opensensorsdata
|
8
|
+
</a>
|
9
|
+
</span>
|
10
|
+
<!-- Add spacer, to align navigation to the right -->
|
11
|
+
<div class="mdl-layout-spacer"></div>
|
12
|
+
{% include osd-home-nav-search.html %}
|
13
|
+
</div>
|
14
|
+
</header>
|
15
|
+
<div class="osd-drawer mdl-layout__drawer">
|
16
|
+
<span class="osd-menu mdl-layout-title">
|
17
|
+
<img class="osd-menu-logo" src="{{ site.url }}{{ site.baseurl }}/assets/img/osd-icons/osd-logo-icon.svg">
|
18
|
+
opensensorsdata
|
19
|
+
</span>
|
20
|
+
<nav class="mdl-navigation">
|
21
|
+
{% for node in site.data.nodes %}
|
22
|
+
<a href="{{ site.url }}{{ site.baseurl }}/{{ node.link }}" class="mdl-navigation__link {% if page.url contains node.link %}active{% endif %}">
|
23
|
+
<button class="mdl-button mdl-js-button mdl-button--icon"><img src="{{ site.url }}{{ site.baseurl }}/{{ node.icon }}"></button> {{ node.name | escape }}
|
24
|
+
</a>
|
25
|
+
|
26
|
+
{% endfor %}
|
27
|
+
</nav>
|
28
|
+
</div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<form action="{{ site.url }}{{ site.baseurl }}search" method="get">
|
2
|
+
<div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
|
3
|
+
<label class="mdl-button mdl-js-button mdl-button--icon" for="search_box">
|
4
|
+
<i class="material-icons">search</i>
|
5
|
+
</label>
|
6
|
+
<div class="mdl-textfield__expandable-holder">
|
7
|
+
<input class="mdl-textfield__input" type="text" id="search_box" name="query">
|
8
|
+
<label class="mdl-textfield__label" for="sample-expandable">Expandable Input</label>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</form>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<div class="osd-home-logo-section mdl-typography--text-center">
|
2
|
+
<div class="osd-home-logo">
|
3
|
+
<a href="#discover">
|
4
|
+
<img class="osd-home-logo-img" src="assets/img/logos/osd-logo-home.svg" alt="logo opensensorsdata" />
|
5
|
+
</a>
|
6
|
+
<div class="osd-home-payoff">
|
7
|
+
<h3>We open data</h3>
|
8
|
+
<p class="osd-home-payoff"><a href="#discover">
|
9
|
+
<br>We deliver strategies and run projects of data reuse, <br>making open data a valuable asset <br>and a sustainable element of business models<br><br><i class="material-icons">expand_more</i>
|
10
|
+
</a></p>
|
11
|
+
</div>
|
12
|
+
<!-- <a href="#mission"><i class="material-icons">expand_more</i></a> -->
|
13
|
+
</div>
|
14
|
+
</div>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body class="osd-mdl mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
|
7
|
+
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
|
8
|
+
|
9
|
+
{{ content }}
|
10
|
+
|
11
|
+
</div>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
|
15
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body class="osd-mdl mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
|
7
|
+
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
|
8
|
+
|
9
|
+
{% include nav.html %}
|
10
|
+
|
11
|
+
<main class="mdl-layout__content">
|
12
|
+
|
13
|
+
{{ content }}
|
14
|
+
|
15
|
+
{% include footer.html %}
|
16
|
+
|
17
|
+
</main>
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
</div>
|
22
|
+
</body>
|
23
|
+
|
24
|
+
</html>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_sass/base.scss
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
html, body {
|
2
|
+
font-family: 'Roboto', 'Helvetica', sans-serif;
|
3
|
+
margin: 0;
|
4
|
+
padding: 0;
|
5
|
+
}
|
6
|
+
|
7
|
+
/**
|
8
|
+
* Images
|
9
|
+
*/
|
10
|
+
img {
|
11
|
+
max-width: 100%;
|
12
|
+
margin: auto;
|
13
|
+
display: block;
|
14
|
+
}
|
15
|
+
|
16
|
+
.img-attribution {
|
17
|
+
font-weight: 100;
|
18
|
+
font-size: 10px;
|
19
|
+
text-align: right;
|
20
|
+
margin: 10px;
|
21
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
.osd-home-logo-section {
|
2
|
+
position: relative;
|
3
|
+
height: 100vh;
|
4
|
+
width: 100%;
|
5
|
+
}
|
6
|
+
|
7
|
+
.osd-home-logo {
|
8
|
+
position: absolute;
|
9
|
+
top: 50%;
|
10
|
+
left: 50%;
|
11
|
+
margin-right: -50%;
|
12
|
+
text-align: center;
|
13
|
+
transform: translate(-50%, -50%)
|
14
|
+
}
|
15
|
+
|
16
|
+
.osd-home-logo-img {
|
17
|
+
max-width: 33%;
|
18
|
+
}
|
19
|
+
|
20
|
+
.osd-home-payoff {
|
21
|
+
font-weight: 100;
|
22
|
+
letter-spacing: 0.2rem;
|
23
|
+
|
24
|
+
a {
|
25
|
+
color: $gray-dark;
|
26
|
+
text-decoration: none;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
.content-grid {
|
31
|
+
max-width: 960px;
|
32
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
---
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
+
---
|
4
|
+
@charset "utf-8";
|
5
|
+
|
6
|
+
//Measures
|
7
|
+
$spacing-unit : 50px;
|
8
|
+
$spacing-vertical : 50px;
|
9
|
+
|
10
|
+
// Color Base Logo
|
11
|
+
$indigo : #3f51b5;
|
12
|
+
$pink : #e91e63;
|
13
|
+
//$pink rgba(233, 30, 99, 0.9)
|
14
|
+
$gray-dark : #757575;
|
15
|
+
$gray : #f5f5f5;
|
16
|
+
|
17
|
+
|
18
|
+
// Width of the content area
|
19
|
+
$content-width: 800px !default;
|
20
|
+
|
21
|
+
$on-palm: 600px !default;
|
22
|
+
$on-laptop: 800px !default;
|
23
|
+
|
24
|
+
// Use media queries like this:
|
25
|
+
// @include media-query($on-palm) {
|
26
|
+
// .wrapper {
|
27
|
+
// padding-right: $spacing-unit / 2;
|
28
|
+
// padding-left: $spacing-unit / 2;
|
29
|
+
// }
|
30
|
+
// }
|
31
|
+
@mixin media-query($device) {
|
32
|
+
@media screen and (max-width: $device) {
|
33
|
+
@content;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
// Minima also includes a mixin for defining media queries.
|
38
|
+
// Use media queries like this:
|
39
|
+
// @include media-query($on-palm) {
|
40
|
+
// .wrapper {
|
41
|
+
// padding-right: $spacing-unit / 2;
|
42
|
+
// padding-left: $spacing-unit / 2;
|
43
|
+
// }
|
44
|
+
// }
|
45
|
+
|
46
|
+
// Import partials from the `minima` theme.
|
47
|
+
// @import "minima";
|
48
|
+
|
49
|
+
@import
|
50
|
+
"material-osd",
|
51
|
+
"base",
|
52
|
+
"osd-home-section-header"
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,309 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
6
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
7
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
8
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
11
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
14
|
+
inkscape:export-ydpi="320"
|
15
|
+
inkscape:export-xdpi="320"
|
16
|
+
inkscape:export-filename="/Users/lucacorsato/Documents/lavori/DISALVO.png"
|
17
|
+
sodipodi:docname="osd-logo-home.svg"
|
18
|
+
inkscape:version="0.91 r13725"
|
19
|
+
version="1.1"
|
20
|
+
id="svg2"
|
21
|
+
height="720"
|
22
|
+
width="720">
|
23
|
+
<sodipodi:namedview
|
24
|
+
fit-margin-bottom="0"
|
25
|
+
fit-margin-right="0"
|
26
|
+
fit-margin-left="0"
|
27
|
+
fit-margin-top="0"
|
28
|
+
inkscape:window-maximized="0"
|
29
|
+
inkscape:window-y="0"
|
30
|
+
inkscape:window-x="73"
|
31
|
+
inkscape:window-height="851"
|
32
|
+
inkscape:window-width="1440"
|
33
|
+
showgrid="false"
|
34
|
+
inkscape:current-layer="layer5"
|
35
|
+
inkscape:document-units="px"
|
36
|
+
inkscape:cy="-269.37481"
|
37
|
+
inkscape:cx="-1095.17"
|
38
|
+
inkscape:zoom="0.14938552"
|
39
|
+
inkscape:pageshadow="2"
|
40
|
+
inkscape:pageopacity="0.0"
|
41
|
+
borderopacity="1.0"
|
42
|
+
bordercolor="#666666"
|
43
|
+
pagecolor="#ffffff"
|
44
|
+
id="base" />
|
45
|
+
<defs
|
46
|
+
id="defs4">
|
47
|
+
<linearGradient
|
48
|
+
osb:paint="solid"
|
49
|
+
id="linearGradient4444">
|
50
|
+
<stop
|
51
|
+
id="stop4446"
|
52
|
+
offset="0"
|
53
|
+
style="stop-color:#002fa7;stop-opacity:1;" />
|
54
|
+
</linearGradient>
|
55
|
+
<linearGradient
|
56
|
+
gradientUnits="userSpaceOnUse"
|
57
|
+
y2="393.59521"
|
58
|
+
x2="3401.6096"
|
59
|
+
y1="393.59521"
|
60
|
+
x1="1481.6096"
|
61
|
+
id="linearGradient4448"
|
62
|
+
xlink:href="#linearGradient4444"
|
63
|
+
inkscape:collect="always" />
|
64
|
+
<linearGradient
|
65
|
+
gradientTransform="translate(-1761.6116,2283.4524)"
|
66
|
+
y2="393.59521"
|
67
|
+
x2="3401.6096"
|
68
|
+
y1="393.59521"
|
69
|
+
x1="1481.6096"
|
70
|
+
gradientUnits="userSpaceOnUse"
|
71
|
+
id="linearGradient4452"
|
72
|
+
xlink:href="#linearGradient4444"
|
73
|
+
inkscape:collect="always" />
|
74
|
+
<clipPath
|
75
|
+
clipPathUnits="userSpaceOnUse"
|
76
|
+
id="clipPath8097">
|
77
|
+
<rect
|
78
|
+
style="display:inline;opacity:1;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1"
|
79
|
+
id="rect8099"
|
80
|
+
width="600"
|
81
|
+
height="436.36365"
|
82
|
+
x="1762.1588"
|
83
|
+
y="-1034.2781"
|
84
|
+
ry="40.909092"
|
85
|
+
rx="40.909092"
|
86
|
+
clip-path="none"
|
87
|
+
mask="none" />
|
88
|
+
</clipPath>
|
89
|
+
<inkscape:path-effect
|
90
|
+
effect="spiro"
|
91
|
+
id="path-effect4886"
|
92
|
+
is_visible="true" />
|
93
|
+
<inkscape:path-effect
|
94
|
+
is_visible="true"
|
95
|
+
id="path-effect4882"
|
96
|
+
effect="spiro" />
|
97
|
+
<inkscape:path-effect
|
98
|
+
is_visible="true"
|
99
|
+
id="path-effect4878"
|
100
|
+
effect="spiro" />
|
101
|
+
<linearGradient
|
102
|
+
inkscape:collect="always"
|
103
|
+
xlink:href="#linearGradient4444"
|
104
|
+
id="linearGradient4360"
|
105
|
+
x1="1481.6096"
|
106
|
+
y1="393.59521"
|
107
|
+
x2="3401.6096"
|
108
|
+
y2="393.59521"
|
109
|
+
gradientUnits="userSpaceOnUse" />
|
110
|
+
<linearGradient
|
111
|
+
inkscape:collect="always"
|
112
|
+
xlink:href="#linearGradient4444"
|
113
|
+
id="linearGradient4362"
|
114
|
+
gradientUnits="userSpaceOnUse"
|
115
|
+
x1="1481.6096"
|
116
|
+
y1="393.59521"
|
117
|
+
x2="3401.6096"
|
118
|
+
y2="393.59521"
|
119
|
+
gradientTransform="translate(-1761.6116,2283.4524)" />
|
120
|
+
<clipPath
|
121
|
+
id="clipPath8097-1"
|
122
|
+
clipPathUnits="userSpaceOnUse">
|
123
|
+
<rect
|
124
|
+
mask="none"
|
125
|
+
clip-path="none"
|
126
|
+
rx="40.909092"
|
127
|
+
ry="40.909092"
|
128
|
+
y="-1034.2781"
|
129
|
+
x="1762.1588"
|
130
|
+
height="436.36365"
|
131
|
+
width="600"
|
132
|
+
id="rect8099-33"
|
133
|
+
style="display:inline;opacity:1;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1" />
|
134
|
+
</clipPath>
|
135
|
+
<linearGradient
|
136
|
+
gradientUnits="userSpaceOnUse"
|
137
|
+
y2="393.59521"
|
138
|
+
x2="3401.6096"
|
139
|
+
y1="393.59521"
|
140
|
+
x1="1481.6096"
|
141
|
+
id="linearGradient4513"
|
142
|
+
xlink:href="#linearGradient4444"
|
143
|
+
inkscape:collect="always" />
|
144
|
+
<linearGradient
|
145
|
+
gradientTransform="translate(-1761.6116,2283.4524)"
|
146
|
+
y2="393.59521"
|
147
|
+
x2="3401.6096"
|
148
|
+
y1="393.59521"
|
149
|
+
x1="1481.6096"
|
150
|
+
gradientUnits="userSpaceOnUse"
|
151
|
+
id="linearGradient4515"
|
152
|
+
xlink:href="#linearGradient4444"
|
153
|
+
inkscape:collect="always" />
|
154
|
+
<clipPath
|
155
|
+
clipPathUnits="userSpaceOnUse"
|
156
|
+
id="clipPath8097-5">
|
157
|
+
<rect
|
158
|
+
style="display:inline;opacity:1;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1"
|
159
|
+
id="rect8099-3"
|
160
|
+
width="600"
|
161
|
+
height="436.36365"
|
162
|
+
x="1762.1588"
|
163
|
+
y="-1034.2781"
|
164
|
+
ry="40.909092"
|
165
|
+
rx="40.909092"
|
166
|
+
clip-path="none"
|
167
|
+
mask="none" />
|
168
|
+
</clipPath>
|
169
|
+
<filter
|
170
|
+
height="1.0285"
|
171
|
+
y="-0.01425"
|
172
|
+
width="1.0207273"
|
173
|
+
x="-0.010363636"
|
174
|
+
id="filter4961"
|
175
|
+
style="color-interpolation-filters:sRGB"
|
176
|
+
inkscape:collect="always">
|
177
|
+
<feGaussianBlur
|
178
|
+
id="feGaussianBlur4963"
|
179
|
+
stdDeviation="0.19"
|
180
|
+
inkscape:collect="always" />
|
181
|
+
</filter>
|
182
|
+
</defs>
|
183
|
+
<metadata
|
184
|
+
id="metadata7">
|
185
|
+
<rdf:RDF>
|
186
|
+
<cc:Work
|
187
|
+
rdf:about="">
|
188
|
+
<dc:format>image/svg+xml</dc:format>
|
189
|
+
<dc:type
|
190
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
191
|
+
<dc:title></dc:title>
|
192
|
+
</cc:Work>
|
193
|
+
</rdf:RDF>
|
194
|
+
</metadata>
|
195
|
+
<g
|
196
|
+
inkscape:groupmode="layer"
|
197
|
+
id="layer5"
|
198
|
+
inkscape:label="sfondo"
|
199
|
+
transform="translate(-1902.1588,610.1869)"
|
200
|
+
style="display:inline">
|
201
|
+
<text
|
202
|
+
xml:space="preserve"
|
203
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:180px;line-height:125%;font-family:Griffo;-inkscape-font-specification:Griffo;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
204
|
+
x="-255.30142"
|
205
|
+
y="1233.9358"
|
206
|
+
id="text4157-4"
|
207
|
+
sodipodi:linespacing="125%"><tspan
|
208
|
+
sodipodi:role="line"
|
209
|
+
id="tspan4159-7"
|
210
|
+
x="-255.30142"
|
211
|
+
y="1233.9358"
|
212
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold'" /></text>
|
213
|
+
<g
|
214
|
+
id="g4488"
|
215
|
+
transform="matrix(3.75,0,0,3.75,-22.35063,-1787.8541)">
|
216
|
+
<rect
|
217
|
+
y="314.04459"
|
218
|
+
x="513.20251"
|
219
|
+
height="192"
|
220
|
+
width="192"
|
221
|
+
id="rect4950"
|
222
|
+
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1" />
|
223
|
+
<rect
|
224
|
+
transform="matrix(4,0,0,4,-2388.076,-1006.9228)"
|
225
|
+
style="display:inline;opacity:0.2;fill:#696969;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1;filter:url(#filter4961)"
|
226
|
+
id="rect4958"
|
227
|
+
width="44"
|
228
|
+
height="32"
|
229
|
+
x="727.31964"
|
230
|
+
y="339.24139"
|
231
|
+
rx="3"
|
232
|
+
ry="3" />
|
233
|
+
<rect
|
234
|
+
style="display:inline;opacity:0.2;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1"
|
235
|
+
id="rect4955"
|
236
|
+
width="176"
|
237
|
+
height="128"
|
238
|
+
x="521.20251"
|
239
|
+
y="342.04288"
|
240
|
+
rx="12"
|
241
|
+
ry="12" />
|
242
|
+
<rect
|
243
|
+
ry="12"
|
244
|
+
rx="12"
|
245
|
+
y="346.04459"
|
246
|
+
x="521.20251"
|
247
|
+
height="128"
|
248
|
+
width="176"
|
249
|
+
id="rect4952"
|
250
|
+
style="display:inline;opacity:1;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1" />
|
251
|
+
<path
|
252
|
+
inkscape:connector-curvature="0"
|
253
|
+
id="path4967"
|
254
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:28px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#e91e63;fill-opacity:1;stroke:none"
|
255
|
+
d="m 563.1233,410.00908 c 0,2.61184 0.4198,4.58628 1.25952,5.92352 0.85524,1.33708 2.23924,2.0058 4.15192,2.0058 1.89716,0 3.25788,-0.6608 4.08208,-1.98216 0.83972,-1.33744 1.25956,-3.31968 1.2596,-5.94716 -4e-5,-2.61168 -0.41988,-4.57028 -1.2596,-5.87608 -0.83984,-1.30576 -2.216,-1.95884 -4.12864,-1.95884 -1.89724,0 -3.2656,0.65308 -4.10536,1.95884 -0.83972,1.29004 -1.25952,3.24864 -1.25952,5.87608 m 18.03064,0 c -4e-5,4.29496 -1.1196,7.65396 -3.35884,10.07684 -2.23936,2.42296 -5.35708,3.63416 -9.3536,3.63416 -2.50356,0 -4.7118,-0.5504 -6.62444,-1.65176 -1.91272,-1.11724 -3.38216,-2.71388 -4.40864,-4.79072 -1.02628,-2.07664 -1.53944,-4.49952 -1.53944,-7.26852 0,-4.31056 1.11176,-7.66168 3.33548,-10.0532 2.2238,-2.39136 5.34948,-3.58708 9.37692,-3.58708 2.50372,0 4.71172,0.5506 6.62464,1.65196 1.91264,1.10136 3.38212,2.6824 4.40848,4.74352 1.02624,2.061 1.5394,4.47584 1.53944,7.2448"
|
256
|
+
inkscape:export-filename="/Users/lucacorsato/Documents/o{s}d/o{s}d_semplice.png"
|
257
|
+
inkscape:export-xdpi="300"
|
258
|
+
inkscape:export-ydpi="300" />
|
259
|
+
<path
|
260
|
+
d="m 648.00422,423.72016 c -3.06348,0 -5.47368,-1.20352 -7.23092,-3.61056 -1.74164,-2.407 -2.6124,-5.74232 -2.6124,-10.00588 0,-4.3264 0.88624,-7.69316 2.65904,-10.10008 1.78828,-2.42292 4.24516,-3.63436 7.37084,-3.63436 3.28108,0 5.78476,1.29008 7.51072,3.87016 l 0.2332,0 c -0.3576,-1.96648 -0.53644,-3.7208 -0.5364,-5.2624 l 0,-8.44852 7.13748,0 0,36.71984 -5.45816,0 -1.37624,-3.42176 -0.3032,0 c -1.61736,2.59572 -4.082,3.89356 -7.3942,3.89356 m 2.4958,-5.73436 c 1.81932,0 3.14892,-0.53496 3.98864,-1.60456 0.85516,-1.06996 1.32164,-2.8872 1.39956,-5.45156 l 0,-0.77876 c 0,-2.83172 -0.4354,-4.86112 -1.30628,-6.08852 -0.85528,-1.22696 -2.2548,-1.84072 -4.19852,-1.84072 -1.58624,0 -2.8224,0.68444 -3.70876,2.05328 -0.87084,1.35296 -1.30624,3.32736 -1.30624,5.92308 0,2.596 0.44324,4.54676 1.32956,5.85264 0.88636,1.29012 2.15364,1.93512 3.802,1.93512"
|
261
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:28px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#3f51b5;fill-opacity:1;stroke:none"
|
262
|
+
id="path4969"
|
263
|
+
inkscape:connector-curvature="0"
|
264
|
+
inkscape:export-filename="/Users/lucacorsato/Documents/o{s}d/o{s}d_semplice.png"
|
265
|
+
inkscape:export-xdpi="300"
|
266
|
+
inkscape:export-ydpi="300" />
|
267
|
+
<path
|
268
|
+
inkscape:connector-curvature="0"
|
269
|
+
id="path4971"
|
270
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;line-height:125%;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#e91e63;fill-opacity:1;stroke:none"
|
271
|
+
d="m 603.35942,450.0446 c -3.9186,0 -6.93544,-1.21156 -9.05016,-3.6344 -2.08384,-2.42292 -3.12568,-5.83668 -3.12568,-10.24176 l 0,-13.92328 c 0,-3.68136 -0.82416,-6.43476 -2.47236,-8.25976 -1.61736,-1.85636 -4.13644,-2.84744 -7.5576,-2.97332 l 0,-2.12384 c 6.68672,-0.126 10.02996,-3.83872 10.02996,-11.13864 l 0,-13.8762 c 0,-4.43652 1.01072,-7.85028 3.03228,-10.2418 2.0216,-2.39124 5.06932,-3.587 9.14356,-3.587 l 6.29796,0 0,2.2184 -2.89248,0 c -2.83024,0 -4.85168,0.86532 -6.06456,2.59576 -1.1818,1.6992 -1.77268,4.21628 -1.77264,7.5516 l 0,15.57512 c -4e-5,2.98932 -0.80872,5.56944 -2.42596,7.74056 -1.61716,2.13956 -3.79428,3.50816 -6.53112,4.10624 l 0,0.1416 c 2.76796,0.66064 4.94504,2.0608 6.53112,4.20056 1.61724,2.108 2.42592,4.68816 2.42596,7.74044 l 0,15.76388 c -4e-5,3.33528 0.59084,5.85244 1.77264,7.55176 1.21288,1.73028 3.23436,2.5956 6.06456,2.5956 l 2.89248,0 0,2.2184 -6.29796,0"
|
272
|
+
inkscape:export-filename="/Users/lucacorsato/Documents/o{s}d/o{s}d_semplice.png"
|
273
|
+
inkscape:export-xdpi="300"
|
274
|
+
inkscape:export-ydpi="300" />
|
275
|
+
<path
|
276
|
+
inkscape:connector-curvature="0"
|
277
|
+
id="path4973"
|
278
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;line-height:125%;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#3f51b5;fill-opacity:1;stroke:none"
|
279
|
+
d="m 609.65738,450.0446 0,-2.2186 2.89228,0 c 2.83012,0 4.83604,-0.86532 6.01796,-2.5956 1.2128,-1.69932 1.8194,-4.21648 1.8194,-7.55176 l 0,-15.76388 c 0,-3.0522 0.79292,-5.63228 2.37916,-7.74044 1.58608,-2.13976 3.77864,-3.53992 6.57776,-4.20056 l 0,-0.1416 c -2.73688,-0.59788 -4.91404,-1.9824 -6.53112,-4.15336 -1.61732,-2.1712 -2.4258,-4.73544 -2.4258,-7.6934 l 0,-15.57512 c 0,-3.33532 -0.6066,-5.8524 -1.8194,-7.55164 -1.18192,-1.7304 -3.18784,-2.59572 -6.01796,-2.59572 l -2.89228,0 0,-2.2184 6.3444,0 c 4.04304,2e-4 7.07548,1.19592 9.09696,3.5872 2.0214,2.39128 3.03216,5.80524 3.03216,10.2416 l 0,13.8762 c 0,7.29988 3.34348,11.01268 10.03,11.1386 l 0,2.12384 c -3.35884,0.126 -5.87804,1.10116 -7.55736,2.92624 -1.64844,1.82504 -2.47264,4.59392 -2.47264,8.30684 l 0,13.92328 c 0,4.37368 -1.05736,7.77188 -3.17208,10.1946 -2.08384,2.45428 -5.06936,3.68156 -8.95704,3.68156 l -6.3444,0"
|
280
|
+
inkscape:export-filename="/Users/lucacorsato/Documents/o{s}d/o{s}d_semplice.png"
|
281
|
+
inkscape:export-xdpi="300"
|
282
|
+
inkscape:export-ydpi="300" />
|
283
|
+
<path
|
284
|
+
inkscape:connector-curvature="0"
|
285
|
+
id="path4975"
|
286
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#757575;fill-opacity:1;stroke:none"
|
287
|
+
d="m 618.92166,415.01552 q 0,3.7582 -2.62196,5.72472 -2.60016,1.96648 -7.80048,1.96648 -2.66572,0 -4.54484,-0.3716 -1.87912,-0.3496 -3.51784,-1.0488 l 0,-5.50624 q 1.85724,0.87404 4.17336,1.46396 2.33796,0.58996 4.1078,0.58996 3.62712,0 3.62712,-2.0976 0,-0.7866 -0.48068,-1.26732 -0.48072,-0.50252 -1.6606,-1.11432 -1.17996,-0.63368 -3.14644,-1.46396 -2.81864,-1.17992 -4.15152,-2.18504 -1.311,-1.00508 -1.9228,-2.29424 -0.58996,-1.311 -0.58996,-3.21196 0,-3.25564 2.51276,-5.02552 2.53464,-1.79168 7.16684,-1.79168 4.41368,0 8.58708,1.9228 l -2.0102,4.807 q -1.8354,-0.7866 -3.43048,-1.28916 -1.59508,-0.50256 -3.25564,-0.50256 -2.94976,0 -2.94976,1.59508 0,0.89584 0.93952,1.55136 0.96144,0.65548 4.17336,1.94464 2.86236,1.15804 4.19524,2.16316 1.33284,1.00512 1.96648,2.31612 0.63364,1.311 0.63364,3.12456 z" />
|
288
|
+
</g>
|
289
|
+
</g>
|
290
|
+
<g
|
291
|
+
transform="translate(-1902.1588,320.3249)"
|
292
|
+
style="display:inline"
|
293
|
+
inkscape:label="logo"
|
294
|
+
id="layer11"
|
295
|
+
inkscape:groupmode="layer">
|
296
|
+
<text
|
297
|
+
sodipodi:linespacing="125%"
|
298
|
+
id="text4157"
|
299
|
+
y="910.95593"
|
300
|
+
x="-368.75"
|
301
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:180px;line-height:125%;font-family:Griffo;-inkscape-font-specification:Griffo;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
302
|
+
xml:space="preserve"><tspan
|
303
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold'"
|
304
|
+
y="910.95593"
|
305
|
+
x="-368.75"
|
306
|
+
id="tspan4159"
|
307
|
+
sodipodi:role="line" /></text>
|
308
|
+
</g>
|
309
|
+
</svg>
|
@@ -0,0 +1,148 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
6
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
7
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
8
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
11
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
14
|
+
width="48"
|
15
|
+
height="48"
|
16
|
+
viewBox="0 0 48.000002 48.000001"
|
17
|
+
id="svg4237"
|
18
|
+
version="1.1"
|
19
|
+
inkscape:version="0.91 r13725"
|
20
|
+
sodipodi:docname="osd-logo-icon.svg">
|
21
|
+
<defs
|
22
|
+
id="defs4239">
|
23
|
+
<inkscape:path-effect
|
24
|
+
effect="spiro"
|
25
|
+
id="path-effect4886"
|
26
|
+
is_visible="true" />
|
27
|
+
<inkscape:path-effect
|
28
|
+
is_visible="true"
|
29
|
+
id="path-effect4882"
|
30
|
+
effect="spiro" />
|
31
|
+
<inkscape:path-effect
|
32
|
+
is_visible="true"
|
33
|
+
id="path-effect4878"
|
34
|
+
effect="spiro" />
|
35
|
+
<linearGradient
|
36
|
+
id="linearGradient4444"
|
37
|
+
osb:paint="solid">
|
38
|
+
<stop
|
39
|
+
style="stop-color:#002fa7;stop-opacity:1;"
|
40
|
+
offset="0"
|
41
|
+
id="stop4446" />
|
42
|
+
</linearGradient>
|
43
|
+
<linearGradient
|
44
|
+
inkscape:collect="always"
|
45
|
+
xlink:href="#linearGradient4444"
|
46
|
+
id="linearGradient4448"
|
47
|
+
x1="1481.6096"
|
48
|
+
y1="393.59521"
|
49
|
+
x2="3401.6096"
|
50
|
+
y2="393.59521"
|
51
|
+
gradientUnits="userSpaceOnUse" />
|
52
|
+
<linearGradient
|
53
|
+
inkscape:collect="always"
|
54
|
+
xlink:href="#linearGradient4444"
|
55
|
+
id="linearGradient4452"
|
56
|
+
gradientUnits="userSpaceOnUse"
|
57
|
+
x1="1481.6096"
|
58
|
+
y1="393.59521"
|
59
|
+
x2="3401.6096"
|
60
|
+
y2="393.59521"
|
61
|
+
gradientTransform="translate(-1761.6116,2283.4524)" />
|
62
|
+
<clipPath
|
63
|
+
id="clipPath8097"
|
64
|
+
clipPathUnits="userSpaceOnUse">
|
65
|
+
<rect
|
66
|
+
mask="none"
|
67
|
+
clip-path="none"
|
68
|
+
rx="40.909092"
|
69
|
+
ry="40.909092"
|
70
|
+
y="-1034.2781"
|
71
|
+
x="1762.1588"
|
72
|
+
height="436.36365"
|
73
|
+
width="600"
|
74
|
+
id="rect8099"
|
75
|
+
style="display:inline;opacity:1;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1" />
|
76
|
+
</clipPath>
|
77
|
+
<clipPath
|
78
|
+
clipPathUnits="userSpaceOnUse"
|
79
|
+
id="clipPath8097-5">
|
80
|
+
<rect
|
81
|
+
style="display:inline;opacity:1;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1"
|
82
|
+
id="rect8099-3"
|
83
|
+
width="600"
|
84
|
+
height="436.36365"
|
85
|
+
x="1762.1588"
|
86
|
+
y="-1034.2781"
|
87
|
+
ry="40.909092"
|
88
|
+
rx="40.909092"
|
89
|
+
clip-path="none"
|
90
|
+
mask="none" />
|
91
|
+
</clipPath>
|
92
|
+
</defs>
|
93
|
+
<sodipodi:namedview
|
94
|
+
id="base"
|
95
|
+
pagecolor="#ffffff"
|
96
|
+
bordercolor="#666666"
|
97
|
+
borderopacity="1.0"
|
98
|
+
inkscape:pageopacity="0.0"
|
99
|
+
inkscape:pageshadow="2"
|
100
|
+
inkscape:zoom="4.9336625"
|
101
|
+
inkscape:cx="40.328414"
|
102
|
+
inkscape:cy="0.22640081"
|
103
|
+
inkscape:document-units="px"
|
104
|
+
inkscape:current-layer="layer1"
|
105
|
+
showgrid="false"
|
106
|
+
inkscape:window-width="1440"
|
107
|
+
inkscape:window-height="851"
|
108
|
+
inkscape:window-x="0"
|
109
|
+
inkscape:window-y="1"
|
110
|
+
inkscape:window-maximized="1"
|
111
|
+
fit-margin-top="0"
|
112
|
+
fit-margin-left="0"
|
113
|
+
fit-margin-right="0"
|
114
|
+
fit-margin-bottom="0"
|
115
|
+
units="px" />
|
116
|
+
<metadata
|
117
|
+
id="metadata4242">
|
118
|
+
<rdf:RDF>
|
119
|
+
<cc:Work
|
120
|
+
rdf:about="">
|
121
|
+
<dc:format>image/svg+xml</dc:format>
|
122
|
+
<dc:type
|
123
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
124
|
+
<dc:title></dc:title>
|
125
|
+
</cc:Work>
|
126
|
+
</rdf:RDF>
|
127
|
+
</metadata>
|
128
|
+
<g
|
129
|
+
inkscape:label="Livello 1"
|
130
|
+
inkscape:groupmode="layer"
|
131
|
+
id="layer1"
|
132
|
+
transform="translate(442.67316,-569.79663)">
|
133
|
+
<rect
|
134
|
+
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1"
|
135
|
+
id="rect5481"
|
136
|
+
width="48"
|
137
|
+
height="48"
|
138
|
+
x="-442.67316"
|
139
|
+
y="569.79663" />
|
140
|
+
<path
|
141
|
+
inkscape:connector-curvature="0"
|
142
|
+
id="rect4188"
|
143
|
+
d="m -430.67316,581.79663 c -1.66199,0 -3,1.338 -3,3 l 0,18 c 0,1.662 1.33801,3 3,3 l 24,0 c 1.662,0 3,-1.338 3,-3 l 0,-18 c 0,-1.662 -1.338,-3 -3,-3 l -24,0 z m 10.68458,3 1.41796,0 1.42677,0 c 0.90969,5e-5 1.59302,0.26763 2.04784,0.80566 0.45483,0.53804 0.68261,1.30749 0.68263,2.30565 l 0,3.12013 c -2e-5,1.64246 0.75137,2.47949 2.25585,2.50781 l 0,0.27246 c 0,-0.97343 0.1988,-1.72896 0.59766,-2.2705 0.40236,-0.54516 0.95492,-0.82032 1.6582,-0.82032 0.73824,0 1.30209,0.29254 1.69042,0.87305 l 0.0528,0 c -0.0805,-0.44246 -0.12012,-0.83674 -0.12012,-1.18359 l 0,-1.90137 1.60546,0 0,8.26171 -1.22754,0 -0.31053,-0.7705 -0.0674,0 c -0.3639,0.58404 -0.91882,0.87599 -1.66407,0.87599 -0.68927,0 -1.2306,-0.26997 -1.62598,-0.81154 -0.39187,-0.54158 -0.58886,-1.29363 -0.58886,-2.25293 l 0,0.20509 c -0.75575,0.0284 -1.32139,0.24853 -1.69921,0.65918 -0.3709,0.41063 -0.55665,1.03373 -0.55664,1.86912 l 0,3.13184 c -10e-6,0.98409 -0.23903,1.74885 -0.71484,2.29395 -0.46886,0.55222 -1.1409,0.82911 -2.01562,0.82911 l -1.42678,0 -1.41796,0 c -0.88169,0 -1.56031,-0.27225 -2.03614,-0.8174 -0.46885,-0.54514 -0.70312,-1.3145 -0.70312,-2.30566 l 0,-3.13184 c 0,-0.8283 -0.18579,-1.44972 -0.55663,-1.86034 -0.3639,-0.41767 -0.92947,-0.63965 -1.69924,-0.66796 l 0,-0.22559 c -10e-6,0.96637 -0.25201,1.72244 -0.75585,2.26758 -0.50385,0.54516 -1.20431,0.81739 -2.10352,0.81739 -0.56331,0 -1.06086,-0.12425 -1.49121,-0.37208 -0.43035,-0.25139 -0.7622,-0.61085 -0.99317,-1.07812 -0.23091,-0.46725 -0.34563,-1.01174 -0.3457,-1.63477 0,-0.96987 0.24968,-1.72363 0.75,-2.26173 0.50035,-0.53805 1.20315,-0.80859 2.10939,-0.80859 0.56331,0 1.06081,0.12437 1.49121,0.37207 0.43035,0.2478 0.76227,0.60559 0.99315,1.06934 0.23093,0.46371 0.34569,1.0059 0.3457,1.62891 l 0,-0.25196 c 1.50452,-0.0284 2.25587,-0.86535 2.25587,-2.50781 l 0,-3.12013 c 0,-0.9982 0.22777,-1.76756 0.68262,-2.30565 0.45486,-0.53803 1.13994,-0.80566 2.05664,-0.80566 z m 0.76757,0.49805 c -0.63679,0 -1.09234,0.19366 -1.36524,0.583 -0.2659,0.38233 -0.39842,0.94878 -0.39842,1.69921 l 0,3.50684 c 0,0.6726 -0.18104,1.25174 -0.54493,1.74024 -0.36385,0.4814 -0.85491,0.7883 -1.4707,0.92285 l 0,0.0322 c 0.6228,0.14865 1.11384,0.46485 1.4707,0.94629 0.36389,0.4743 0.54493,1.05346 0.54493,1.74022 l 0,3.54786 c 0,0.75044 0.13245,1.31687 0.39842,1.69922 0.2729,0.38931 0.72845,0.583 1.36524,0.583 l 0.65039,0 0.6504,0 c 0.63679,0 1.08757,-0.19369 1.35351,-0.583 0.27288,-0.38235 0.41015,-0.94878 0.41016,-1.69922 l 0,-3.54786 c -1e-5,-0.68672 0.17922,-1.2659 0.53613,-1.74022 0.35686,-0.48144 0.84971,-0.79765 1.4795,-0.94629 l 0,-0.0322 c -0.6158,-0.13455 -1.10686,-0.4461 -1.47071,-0.93456 -0.3639,-0.48853 -0.54493,-1.06299 -0.54492,-1.72853 l 0,-3.50684 c -1e-5,-0.75043 -0.13725,-1.31688 -0.41016,-1.69921 -0.26594,-0.38934 -0.71672,-0.583 -1.35351,-0.583 l -0.6504,0 -0.65039,0 z m 0.74414,5.65136 c 0.66206,0 1.30466,0.1452 1.93066,0.43359 l -0.45116,1.08105 c -0.27531,-0.118 -0.53124,-0.21465 -0.77051,-0.29004 -0.23927,-0.0752 -0.48333,-0.11125 -0.73242,-0.11125 -0.44246,0 -0.66503,0.11825 -0.66503,0.35743 0,0.1344 0.07,0.25031 0.21092,0.34863 0.1443,0.0983 0.45864,0.24314 0.94044,0.43653 0.42936,0.17371 0.74343,0.33849 0.94335,0.48925 0.19993,0.15076 0.34734,0.32484 0.4424,0.52149 0.095,0.19665 0.14355,0.42816 0.14355,0.7002 0,0.56373 -0.19851,0.99408 -0.5918,1.28906 -0.39003,0.29497 -0.97485,0.44237 -1.75488,0.44237 -0.39987,0 -0.74061,-0.0263 -1.02246,-0.082 -0.28188,-0.0525 -0.5452,-0.13245 -0.79102,-0.23731 l 0,-1.23926 c 0.27859,0.1311 0.5901,0.24257 0.9375,0.33105 0.3507,0.0885 0.66031,0.13185 0.92578,0.13185 0.54407,0 0.81445,-0.15703 0.81445,-0.47168 0,-0.118 -0.0333,-0.21206 -0.1055,-0.28417 -0.0721,-0.0755 -0.19801,-0.16018 -0.375,-0.25195 -0.17698,-0.0951 -0.41401,-0.20358 -0.70898,-0.32813 -0.4228,-0.17698 -0.73172,-0.34141 -0.93164,-0.4922 -0.19665,-0.15076 -0.34184,-0.32516 -0.4336,-0.51855 -0.0885,-0.19665 -0.13185,-0.43555 -0.13185,-0.7207 0,-0.48833 0.18851,-0.86537 0.56544,-1.13085 0.38018,-0.26875 0.91648,-0.4043 1.61131,-0.4043 z m -9.35741,1.07813 c -0.42688,0 -0.73391,0.14865 -0.92285,0.44239 -0.18893,0.29026 -0.28418,0.73012 -0.28418,1.32128 0,0.58765 0.0953,1.03212 0.28418,1.333 0.19243,0.30084 0.50422,0.45118 0.93457,0.45118 0.42687,0 0.73154,-0.14805 0.91698,-0.44533 0.18895,-0.30091 0.2842,-0.74767 0.2842,-1.33885 0,-0.58762 -0.0953,-1.02748 -0.2842,-1.32128 -0.18895,-0.29382 -0.49838,-0.44239 -0.9287,-0.44239 z m 18.42772,0.0125 c -0.3569,0 -0.63554,0.15491 -0.83496,0.46288 -0.19595,0.30443 -0.29296,0.74604 -0.29296,1.33008 0,0.5841 0.0995,1.02455 0.29882,1.31838 0.19943,0.29027 0.48459,0.43651 0.85546,0.43651 0.40935,0 0.70755,-0.1225 0.89649,-0.36329 0.19241,-0.24074 0.29888,-0.64762 0.31641,-1.2246 l 0,-0.17579 c 0,-0.63713 -0.0999,-1.09493 -0.2959,-1.37108 -0.19243,-0.27607 -0.50602,-0.41309 -0.94336,-0.41309 z"
|
144
|
+
clip-path="none"
|
145
|
+
mask="none"
|
146
|
+
style="opacity:1;fill:#696969;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:263;stroke-opacity:1" />
|
147
|
+
</g>
|
148
|
+
</svg>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material-osd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lucacorsato
|
@@ -58,7 +58,27 @@ email:
|
|
58
58
|
executables: []
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
|
-
files:
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/nav.html
|
67
|
+
- _includes/osd-home-nav-search.html
|
68
|
+
- _includes/osd-home-section-header.html
|
69
|
+
- _layouts/default.html
|
70
|
+
- _layouts/home.html
|
71
|
+
- _layouts/page.html
|
72
|
+
- _layouts/post.html
|
73
|
+
- _sass/base.scss
|
74
|
+
- _sass/osd-home-section-header.scss
|
75
|
+
- assets/css/main.scss
|
76
|
+
- assets/icon-github.svg
|
77
|
+
- assets/icon-twitter.svg
|
78
|
+
- assets/img/logos/apple-touch-icon-144-precomposed.png
|
79
|
+
- assets/img/logos/favicon.ico
|
80
|
+
- assets/img/logos/osd-logo-home.svg
|
81
|
+
- assets/img/osd-icons/osd-logo-icon.svg
|
62
82
|
homepage: http://osd.tools
|
63
83
|
licenses:
|
64
84
|
- MIT
|