updated github pull
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
_site
|
||||
vendor
|
||||
.jekyll-cache
|
||||
.DS_Store
|
||||
Gemfile.lock
|
||||
|
|
|
@ -8,9 +8,6 @@ domain: "https://www.freeholdcottage.com"
|
|||
email_address: freeholdcottage@gmail.com
|
||||
phone_number: 01706 853384
|
||||
|
||||
# if you blank this it'll remove the whatsapp links
|
||||
# whatsapp_country_code: 44
|
||||
|
||||
address:
|
||||
street: 452 Market St
|
||||
locality: Shawforth, Rochdale
|
||||
|
|
|
@ -3,14 +3,3 @@
|
|||
<script async href="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.12&appId=179012276202158&autoLogAppEvents=1" id="facebook-jssdk"></script>
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
if (window.netlifyIdentity) {
|
||||
window.netlifyIdentity.on("init", user => {
|
||||
if (!user) {
|
||||
window.netlifyIdentity.on("login", () => {
|
||||
document.location.href = "/admin/";
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
|
@ -4,7 +4,7 @@
|
|||
{% if site.address.locality %}{{site.address.locality }} {% endif %}
|
||||
{% if site.address.post_code %}{{site.address.post_code }} {% endif %}
|
||||
{% include link-phone-number.md %}
|
||||
{% include link-facebook-page.md %}
|
||||
{% include link-email-address.md %}
|
||||
{% endcapture %}
|
||||
|
||||
<footer>{{ to_markdown | markdownify }}</footer>
|
|
@ -12,7 +12,14 @@
|
|||
<link rel="stylesheet" href="{{ "/assets/icons/css/fontello.css" | relative_url }}">
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
{% include json-ld.html %}
|
||||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
|
||||
</head>
|
||||
|
|
1
_includes/link-email-address.md
Normal file
|
@ -0,0 +1 @@
|
|||
[{{site.email_address}}](mailto:{{site.email_address}})
|
27
_layouts/gallery.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include title.html %}
|
||||
<div class="row">
|
||||
<div class="col-lg-8 margin--bottom">
|
||||
<div class="page {{page.cssClass}}">
|
||||
{{ content | switcheroo }}
|
||||
<div class="row gallery">
|
||||
{% for image in site.static_files %}
|
||||
{% if image.path contains 'gallery/thumbs' %}
|
||||
<div class="col-3">
|
||||
<a href="{{ image.path| replace: "/thumbs", "" }}">
|
||||
<img src="{{ image.path }}" alt="image" />
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 margin--bottom">
|
||||
{% include contact-links.html %}
|
||||
{% include cqc-widget.html %}
|
||||
</div>
|
||||
</div>
|
|
@ -10,7 +10,7 @@ layout: default
|
|||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-8 page page--home">
|
||||
<div class="col-lg-8 page page--home">
|
||||
{{ content }}
|
||||
<hr>
|
||||
{% if site.google_maps_embed %}
|
||||
|
@ -19,7 +19,7 @@ layout: default
|
|||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-lg-4">
|
||||
{% include contact-links.html %}
|
||||
{% include cqc-widget.html %}
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,7 @@ layout: default
|
|||
|
||||
{% include title.html %}
|
||||
<div class="row">
|
||||
<div class="col-md-8 order-sm-1 margin--bottom">
|
||||
<div class="col-md-8 margin--bottom">
|
||||
<div class="page {{page.cssClass}}">
|
||||
{{ content | switcheroo }}
|
||||
{% assign news_items = site.news | sort: "date" | reverse %}
|
||||
|
@ -22,7 +22,7 @@ layout: default
|
|||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 order-sm-2 margin--bottom">
|
||||
<div class="col-md-4 margin--bottom">
|
||||
{% include contact-links.html %}
|
||||
{% include cqc-widget.html %}
|
||||
</div>
|
||||
|
|
|
@ -4,12 +4,12 @@ layout: default
|
|||
|
||||
{% include title.html %}
|
||||
<div class="row">
|
||||
<div class="col-md-8 order-sm-1 margin--bottom">
|
||||
<div class="col-lg-8 margin--bottom">
|
||||
<div class="page {{page.cssClass}}">
|
||||
{{ content | switcheroo }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 order-sm-2 margin--bottom">
|
||||
<div class="col-lg-4 margin--bottom">
|
||||
{% include contact-links.html %}
|
||||
{% include cqc-widget.html %}
|
||||
</div>
|
||||
|
|
|
@ -17,7 +17,7 @@ icon: tree
|
|||
|
||||
## Our Support
|
||||
|
||||
Our dedicated and professional team collectively has decades of experience in providing residential support to people with mental health problems, including those exacerbated by drug and alcohol problems.
|
||||
Our dedicated and professional team collectively has decades of experience in providing residential support to people with mental health conditions, including those exacerbated by drugs and alcohol.
|
||||
|
||||
We’ve all got a close bond with the local community, and close relationships with medical professionals including dentists, doctors and opticians, so we can ensure that everyone at Freehold Cottage receives the specialised care they need.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
order: 3
|
||||
order: 4
|
||||
icon: phone
|
||||
name: Contact
|
||||
title: Contact Us
|
||||
|
|
|
@ -17,8 +17,8 @@ We’d love to discuss eligibility with you. Find out about how Freehold Cottage
|
|||
|
||||
## Referrals
|
||||
|
||||
Click to download referral forms (Microsoft Word .doc files) and forward completed forms to us at [freeholdcottage@gmail.com](mailto:freeholdcottage@gmail.com)
|
||||
Click to download referral forms (Microsoft Word .docx files) and forward completed forms to us at [freeholdcottage@gmail.com](mailto:freeholdcottage@gmail.com)
|
||||
|
||||
- **[Self Referral Form](/assets/docs/freehold-cottage-self-referral-form.doc):** Use this form if you want to refer yourself for help and support at Freehold Cottage Residential Home. We’d love to hear from you; please be as honest as possible. This form will help us to understand whether Freehold Cottage is the right service for you, or if there’s somewhere else you’d be better suited.
|
||||
- **[Self Referral Form](/assets/docs/freehold-cottage-self-referral-form.docx):** Use this form if you want to refer yourself for help and support at Freehold Cottage Residential Home. We’d love to hear from you; please be as honest as possible. This form will help us to understand whether Freehold Cottage is the right service for you, or if there’s somewhere else you’d be better suited.
|
||||
|
||||
- **[Agency Form](/assets/docs/freehold-cottage-agency-referral-form.doc):** – Use this form if you are acting on behalf of an agency and would like to refer someone you work with to Freehold Cottage Residential Home. Please provide as much information as possible in the form, as we will use your responses to determine if our residential home is the appropriate place, and if we and the referral will be a good fit for each other.
|
||||
- **[Agency Form](/assets/docs/freehold-cottage-agency-referral-form.docx):** – Use this form if you are acting on behalf of an agency and would like to refer someone you work with to Freehold Cottage Residential Home. Please provide as much information as possible in the form, as we will use your responses to determine if our residential home is the appropriate place, and if we and the referral will be a good fit for each other.
|
|
@ -9,9 +9,9 @@ subtitle: 24-hour care
|
|||
icon: tree
|
||||
---
|
||||
|
||||
## A residential home for up to six adults with mental health problems
|
||||
## A residential home for up to six adults with mental health conditions
|
||||
|
||||
Our home is set in the hillsides of Shawforth, Rochdale. A dedicated team of staff provide 24-hour individualised care and support to up to six adults with mental health problems, including those exacerbated by drugs.
|
||||
Our home is set in the hillsides of Shawforth, Rochdale. A dedicated team of staff provide 24-hour individualised care and support to up to six adults with mental health conditions, including those exacerbated by drugs.
|
||||
|
||||
You’ll love our beautiful detached house. Residents can enjoy modern facilities in a calm, relaxing environment, with their own large, private room, and can sit in the vibrant garden, walk to nearby Bacup and Whitworth, or catch a quick bus to Rochdale Town Centre.
|
||||
|
||||
|
|
13
_pages/photos.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
layout: gallery
|
||||
name: Photos
|
||||
permalink: /photos
|
||||
order: 3
|
||||
meta_title: Photos of Freehold Cottage Residential Home, Shawforth, Rochdale
|
||||
title: Photos
|
||||
subtitle: Day to day life
|
||||
icon: photo
|
||||
---
|
||||
|
||||
Here are a few photos taken in recent years:
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
@charset "utf-8";
|
||||
// Define defaults for each variable.
|
||||
$highlight: #003a2c !default;
|
||||
$text: #888 !default;
|
||||
$header: #be7500 !default;
|
||||
$icons: #7b3c1d;
|
||||
$light-bg: #ffffeb !default;
|
||||
$highlight: #005555 !default;
|
||||
$text: #003636 !default;
|
||||
$header: #005500 !default;
|
||||
$icons: #005500;
|
||||
$light-bg: #C9E4CA !default;
|
||||
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||
$fancy-font: "Roboto Condensed", sans-serif !default;
|
||||
|
||||
|
@ -221,6 +221,13 @@ hr {
|
|||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: $header;
|
||||
scroll-margin-top: 60px;
|
||||
@include media-breakpoint-down(md) {
|
||||
scroll-margin-top: 80px;
|
||||
}
|
||||
@include media-breakpoint-down(md) {
|
||||
scroll-margin-top: 90px;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
padding-top: 30px;
|
||||
|
@ -343,6 +350,26 @@ hr {
|
|||
}
|
||||
}
|
||||
|
||||
.gallery {
|
||||
a {
|
||||
overflow: hidden;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
outline: 2px solid $icons;
|
||||
}
|
||||
}
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.col-3 {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 4rem 0;
|
||||
font-size: 80%;
|
||||
|
|
BIN
android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
apple-touch-icon.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
assets/docs/freehold-cottage-agency-referral-form.docx
Normal file
BIN
assets/docs/freehold-cottage-self-referral-form.docx
Normal file
BIN
assets/gallery/bathroom_1.jpg
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
assets/gallery/bathroom_2.jpg
Normal file
After Width: | Height: | Size: 126 KiB |
BIN
assets/gallery/bedroom_1.jpg
Normal file
After Width: | Height: | Size: 133 KiB |
BIN
assets/gallery/christmas_tree.jpg
Normal file
After Width: | Height: | Size: 154 KiB |
BIN
assets/gallery/face_masks.jpg
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
assets/gallery/garage_1.jpg
Normal file
After Width: | Height: | Size: 207 KiB |
BIN
assets/gallery/garden_1.jpg
Normal file
After Width: | Height: | Size: 146 KiB |
BIN
assets/gallery/holiday_1.jpg
Normal file
After Width: | Height: | Size: 293 KiB |
BIN
assets/gallery/holiday_2.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
assets/gallery/holiday_3.jpg
Normal file
After Width: | Height: | Size: 253 KiB |
BIN
assets/gallery/holiday_4.jpg
Normal file
After Width: | Height: | Size: 119 KiB |
BIN
assets/gallery/insurance_certificate.jpg
Normal file
After Width: | Height: | Size: 125 KiB |
BIN
assets/gallery/kitchen_1.jpg
Normal file
After Width: | Height: | Size: 138 KiB |
BIN
assets/gallery/kitchen_2.jpg
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
assets/gallery/living_room_1.jpg
Normal file
After Width: | Height: | Size: 125 KiB |
BIN
assets/gallery/living_room_2.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
assets/gallery/outdoors_1.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/gallery/thumbs/bathroom_1.jpg
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
assets/gallery/thumbs/bathroom_2.jpg
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
assets/gallery/thumbs/bedroom_1.jpg
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
assets/gallery/thumbs/christmas_tree.jpg
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
assets/gallery/thumbs/face_masks.jpg
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
assets/gallery/thumbs/garage_1.jpg
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
assets/gallery/thumbs/garden_1.jpg
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
assets/gallery/thumbs/holiday_1.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/gallery/thumbs/holiday_2.jpg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
assets/gallery/thumbs/holiday_3.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/gallery/thumbs/holiday_4.jpg
Normal file
After Width: | Height: | Size: 9 KiB |
BIN
assets/gallery/thumbs/insurance_certificate.jpg
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
assets/gallery/thumbs/kitchen_1.jpg
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
assets/gallery/thumbs/kitchen_2.jpg
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/gallery/thumbs/living_room_1.jpg
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
assets/gallery/thumbs/living_room_2.jpg
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
assets/gallery/thumbs/outdoors_1.jpg
Normal file
After Width: | Height: | Size: 9.2 KiB |
|
@ -1,4 +1,4 @@
|
|||
This webfont is generated by http://fontello.com open source project.
|
||||
This webfont is generated by https://fontello.com open source project.
|
||||
|
||||
|
||||
================================================================================
|
||||
|
|
|
@ -107,6 +107,12 @@
|
|||
"css": "users",
|
||||
"code": 59400,
|
||||
"src": "fontawesome"
|
||||
},
|
||||
{
|
||||
"uid": "381da2c2f7fd51f8de877c044d7f439d",
|
||||
"css": "photo",
|
||||
"code": 59395,
|
||||
"src": "fontawesome"
|
||||
}
|
||||
]
|
||||
}
|
3
assets/icons/css/fontello-codes.css
vendored
|
@ -2,6 +2,7 @@
|
|||
.icon-truck:before { content: '\e800'; } /* '' */
|
||||
.icon-droplet:before { content: '\e801'; } /* '' */
|
||||
.icon-home:before { content: '\e802'; } /* '' */
|
||||
.icon-photo:before { content: '\e803'; } /* '' */
|
||||
.icon-clock:before { content: '\e804'; } /* '' */
|
||||
.icon-phone:before { content: '\e805'; } /* '' */
|
||||
.icon-at:before { content: '\e806'; } /* '' */
|
||||
|
@ -15,4 +16,4 @@
|
|||
.icon-calc:before { content: '\f1ec'; } /* '' */
|
||||
.icon-facebook:before { content: '\f230'; } /* '' */
|
||||
.icon-whatsapp:before { content: '\f232'; } /* '' */
|
||||
.icon-map-signs:before { content: '\f277'; } /* '' */
|
||||
.icon-map-signs:before { content: '\f277'; } /* '' */
|
||||
|
|
36
assets/icons/css/fontello-embedded.css
vendored
3
assets/icons/css/fontello-ie7-codes.css
vendored
|
@ -2,6 +2,7 @@
|
|||
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-droplet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-at { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
@ -15,4 +16,4 @@
|
|||
.icon-calc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
|
9
assets/icons/css/fontello-ie7.css
vendored
|
@ -2,17 +2,18 @@
|
|||
font-family: 'fontello';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
|
||||
|
||||
/* fix buttons height */
|
||||
line-height: 1em;
|
||||
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
}
|
||||
|
||||
|
||||
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-droplet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-at { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
@ -26,4 +27,4 @@
|
|||
.icon-calc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
|
36
assets/icons/css/fontello.css
vendored
|
@ -1,11 +1,11 @@
|
|||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../font/fontello.eot?36561396');
|
||||
src: url('../font/fontello.eot?36561396#iefix') format('embedded-opentype'),
|
||||
url('../font/fontello.woff2?36561396') format('woff2'),
|
||||
url('../font/fontello.woff?36561396') format('woff'),
|
||||
url('../font/fontello.ttf?36561396') format('truetype'),
|
||||
url('../font/fontello.svg?36561396#fontello') format('svg');
|
||||
src: url('../font/fontello.eot?96990036');
|
||||
src: url('../font/fontello.eot?96990036#iefix') format('embedded-opentype'),
|
||||
url('../font/fontello.woff2?96990036') format('woff2'),
|
||||
url('../font/fontello.woff?96990036') format('woff'),
|
||||
url('../font/fontello.ttf?96990036') format('truetype'),
|
||||
url('../font/fontello.svg?96990036#fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
@ -15,49 +15,49 @@
|
|||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../font/fontello.svg?36561396#fontello') format('svg');
|
||||
src: url('../font/fontello.svg?96990036#fontello') format('svg');
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||
font-family: "fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: never;
|
||||
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
width: 1em;
|
||||
margin-right: .2em;
|
||||
text-align: center;
|
||||
/* opacity: .8; */
|
||||
|
||||
|
||||
/* For safety - reset parent styles, that can break glyph codes*/
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
|
||||
|
||||
/* fix buttons height, for twitter bootstrap */
|
||||
line-height: 1em;
|
||||
|
||||
|
||||
/* Animation center compensation - margins should be symmetric */
|
||||
/* remove if not needed */
|
||||
margin-left: .2em;
|
||||
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
|
||||
|
||||
/* Font smoothing. That was taken from TWBS */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
|
||||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
|
||||
.icon-truck:before { content: '\e800'; } /* '' */
|
||||
.icon-droplet:before { content: '\e801'; } /* '' */
|
||||
.icon-home:before { content: '\e802'; } /* '' */
|
||||
.icon-photo:before { content: '\e803'; } /* '' */
|
||||
.icon-clock:before { content: '\e804'; } /* '' */
|
||||
.icon-phone:before { content: '\e805'; } /* '' */
|
||||
.icon-at:before { content: '\e806'; } /* '' */
|
||||
|
@ -71,4 +71,4 @@
|
|||
.icon-calc:before { content: '\f1ec'; } /* '' */
|
||||
.icon-facebook:before { content: '\f230'; } /* '' */
|
||||
.icon-whatsapp:before { content: '\f232'; } /* '' */
|
||||
.icon-map-signs:before { content: '\f277'; } /* '' */
|
||||
.icon-map-signs:before { content: '\f277'; } /* '' */
|
||||
|
|
|
@ -1,246 +1,160 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><!--[if lt IE 9]><script language="javascript" type="text/javascript" src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
<meta charset="UTF-8"><style>/*
|
||||
* Bootstrap v2.2.1
|
||||
*
|
||||
* Copyright 2012 Twitter, Inc
|
||||
* Licensed under the Apache License v2.0
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||
*/
|
||||
.clearfix {
|
||||
*zoom: 1;
|
||||
}
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
html {
|
||||
font-size: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
}
|
||||
a:focus {
|
||||
outline: thin dotted #333;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
a:hover,
|
||||
a:active {
|
||||
outline: 0;
|
||||
}
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
button,
|
||||
input {
|
||||
*overflow: visible;
|
||||
line-height: normal;
|
||||
}
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
color: #333;
|
||||
background-color: #fff;
|
||||
}
|
||||
a {
|
||||
color: #08c;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #005580;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.row {
|
||||
margin-left: -20px;
|
||||
*zoom: 1;
|
||||
}
|
||||
.row:before,
|
||||
.row:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.row:after {
|
||||
clear: both;
|
||||
}
|
||||
[class*="span"] {
|
||||
float: left;
|
||||
min-height: 1px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
.container,
|
||||
.navbar-static-top .container,
|
||||
.navbar-fixed-top .container,
|
||||
.navbar-fixed-bottom .container {
|
||||
width: 940px;
|
||||
}
|
||||
.span12 {
|
||||
width: 940px;
|
||||
}
|
||||
.span11 {
|
||||
width: 860px;
|
||||
}
|
||||
.span10 {
|
||||
width: 780px;
|
||||
}
|
||||
.span9 {
|
||||
width: 700px;
|
||||
}
|
||||
.span8 {
|
||||
width: 620px;
|
||||
}
|
||||
.span7 {
|
||||
width: 540px;
|
||||
}
|
||||
.span6 {
|
||||
width: 460px;
|
||||
}
|
||||
.span5 {
|
||||
width: 380px;
|
||||
}
|
||||
.span4 {
|
||||
width: 300px;
|
||||
}
|
||||
.span3 {
|
||||
width: 220px;
|
||||
}
|
||||
.span2 {
|
||||
width: 140px;
|
||||
}
|
||||
.span1 {
|
||||
width: 60px;
|
||||
}
|
||||
[class*="span"].pull-right,
|
||||
.row-fluid [class*="span"].pull-right {
|
||||
float: right;
|
||||
}
|
||||
.container {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
*zoom: 1;
|
||||
}
|
||||
.container:before,
|
||||
.container:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.container:after {
|
||||
clear: both;
|
||||
}
|
||||
p {
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
.lead {
|
||||
margin-bottom: 20px;
|
||||
font-size: 21px;
|
||||
font-weight: 200;
|
||||
line-height: 30px;
|
||||
}
|
||||
small {
|
||||
font-size: 85%;
|
||||
}
|
||||
h1 {
|
||||
margin: 10px 0;
|
||||
font-family: inherit;
|
||||
font-weight: bold;
|
||||
line-height: 20px;
|
||||
color: inherit;
|
||||
text-rendering: optimizelegibility;
|
||||
}
|
||||
h1 small {
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
color: #999;
|
||||
}
|
||||
h1 {
|
||||
line-height: 40px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 38.5px;
|
||||
}
|
||||
h1 small {
|
||||
font-size: 24.5px;
|
||||
}
|
||||
body {
|
||||
margin-top: 90px;
|
||||
}
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
margin-left: -480px;
|
||||
background-color: #fff;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-top: 10px;
|
||||
z-index: 10;
|
||||
}
|
||||
.footer {
|
||||
color: #ddd;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.footer a {
|
||||
color: #ccc;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.the-icons {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.switch {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 10px;
|
||||
color: #666;
|
||||
}
|
||||
.switch input {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
.codesOn .i-name {
|
||||
display: none;
|
||||
}
|
||||
.codesOn .i-code {
|
||||
display: inline;
|
||||
}
|
||||
.i-code {
|
||||
display: none;
|
||||
}
|
||||
@font-face {
|
||||
<head>
|
||||
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
html {
|
||||
font-size: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
}
|
||||
a:focus {
|
||||
outline: thin dotted #333;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
a:hover,
|
||||
a:active {
|
||||
outline: 0;
|
||||
}
|
||||
input {
|
||||
margin: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: middle;
|
||||
*overflow: visible;
|
||||
line-height: normal;
|
||||
}
|
||||
input::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
color: #333;
|
||||
background-color: #fff;
|
||||
}
|
||||
a {
|
||||
color: #08c;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #005580;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.row {
|
||||
margin-left: -20px;
|
||||
*zoom: 1;
|
||||
}
|
||||
.row:before,
|
||||
.row:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.row:after {
|
||||
clear: both;
|
||||
}
|
||||
.span3 {
|
||||
float: left;
|
||||
min-height: 1px;
|
||||
margin-left: 20px;
|
||||
width: 220px;
|
||||
}
|
||||
.container {
|
||||
width: 940px;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
*zoom: 1;
|
||||
}
|
||||
.container:before,
|
||||
.container:after {
|
||||
display: table;
|
||||
content: "";
|
||||
line-height: 0;
|
||||
}
|
||||
.container:after {
|
||||
clear: both;
|
||||
}
|
||||
small {
|
||||
font-size: 85%;
|
||||
}
|
||||
h1 {
|
||||
margin: 10px 0;
|
||||
font-family: inherit;
|
||||
font-weight: bold;
|
||||
line-height: 20px;
|
||||
color: inherit;
|
||||
text-rendering: optimizelegibility;
|
||||
line-height: 40px;
|
||||
font-size: 38.5px;
|
||||
}
|
||||
h1 small {
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
color: #999;
|
||||
font-size: 24.5px;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-top: 90px;
|
||||
}
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
margin-left: -480px;
|
||||
background-color: #fff;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-top: 10px;
|
||||
z-index: 10;
|
||||
}
|
||||
.footer {
|
||||
color: #ddd;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.footer a {
|
||||
color: #ccc;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.the-icons {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.switch {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 10px;
|
||||
color: #666;
|
||||
}
|
||||
.switch input {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
.codesOn .i-name {
|
||||
display: none;
|
||||
}
|
||||
.codesOn .i-code {
|
||||
display: inline;
|
||||
}
|
||||
.i-code {
|
||||
display: none;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('./font/fontello.eot?6725300');
|
||||
src: url('./font/fontello.eot?6725300#iefix') format('embedded-opentype'),
|
||||
url('./font/fontello.woff?6725300') format('woff'),
|
||||
url('./font/fontello.ttf?6725300') format('truetype'),
|
||||
url('./font/fontello.svg?6725300#fontello') format('svg');
|
||||
src: url('./font/fontello.eot?53451425');
|
||||
src: url('./font/fontello.eot?53451425#iefix') format('embedded-opentype'),
|
||||
url('./font/fontello.woff?53451425') format('woff'),
|
||||
url('./font/fontello.ttf?53451425') format('truetype'),
|
||||
url('./font/fontello.svg?53451425#fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
.demo-icon
|
||||
{
|
||||
.demo-icon {
|
||||
font-family: "fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
|
@ -274,7 +188,7 @@ body {
|
|||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
<link rel="stylesheet" href="css/animation.css"><!--[if IE 7]><link rel="stylesheet" href="css/" + font.fontname + "-ie7.css"><![endif]-->
|
||||
<script>
|
||||
function toggleCodes(on) {
|
||||
|
@ -286,7 +200,6 @@ body {
|
|||
obj.className = obj.className.replace(' codesOn', '');
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -298,33 +211,69 @@ body {
|
|||
</div>
|
||||
<div class="container" id="icons">
|
||||
<div class="row">
|
||||
<div class="the-icons span3" title="Code: 0xe800"><i class="demo-icon icon-truck"></i> <span class="i-name">icon-truck</span><span class="i-code">0xe800</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe801"><i class="demo-icon icon-droplet"></i> <span class="i-name">icon-droplet</span><span class="i-code">0xe801</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe802"><i class="demo-icon icon-home"></i> <span class="i-name">icon-home</span><span class="i-code">0xe802</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe804"><i class="demo-icon icon-clock"></i> <span class="i-name">icon-clock</span><span class="i-code">0xe804</span></div>
|
||||
<div class="span3" title="Code: 0xe800">
|
||||
<i class="demo-icon icon-truck"></i> <span class="i-name">icon-truck</span><span class="i-code">0xe800</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe801">
|
||||
<i class="demo-icon icon-droplet"></i> <span class="i-name">icon-droplet</span><span class="i-code">0xe801</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe802">
|
||||
<i class="demo-icon icon-home"></i> <span class="i-name">icon-home</span><span class="i-code">0xe802</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe803">
|
||||
<i class="demo-icon icon-photo"></i> <span class="i-name">icon-photo</span><span class="i-code">0xe803</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="the-icons span3" title="Code: 0xe805"><i class="demo-icon icon-phone"></i> <span class="i-name">icon-phone</span><span class="i-code">0xe805</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe806"><i class="demo-icon icon-at"></i> <span class="i-name">icon-at</span><span class="i-code">0xe806</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe807"><i class="demo-icon icon-leaf"></i> <span class="i-name">icon-leaf</span><span class="i-code">0xe807</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xe808"><i class="demo-icon icon-users"></i> <span class="i-name">icon-users</span><span class="i-code">0xe808</span></div>
|
||||
<div class="span3" title="Code: 0xe804">
|
||||
<i class="demo-icon icon-clock"></i> <span class="i-name">icon-clock</span><span class="i-code">0xe804</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe805">
|
||||
<i class="demo-icon icon-phone"></i> <span class="i-name">icon-phone</span><span class="i-code">0xe805</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe806">
|
||||
<i class="demo-icon icon-at"></i> <span class="i-name">icon-at</span><span class="i-code">0xe806</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe807">
|
||||
<i class="demo-icon icon-leaf"></i> <span class="i-name">icon-leaf</span><span class="i-code">0xe807</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="the-icons span3" title="Code: 0xe83f"><i class="demo-icon icon-tree"></i> <span class="i-name">icon-tree</span><span class="i-code">0xe83f</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf019"><i class="demo-icon icon-globe"></i> <span class="i-name">icon-globe</span><span class="i-code">0xf019</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf1a0"><i class="demo-icon icon-google"></i> <span class="i-name">icon-google</span><span class="i-code">0xf1a0</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf1b9"><i class="demo-icon icon-car"></i> <span class="i-name">icon-car</span><span class="i-code">0xf1b9</span></div>
|
||||
<div class="span3" title="Code: 0xe808">
|
||||
<i class="demo-icon icon-users"></i> <span class="i-name">icon-users</span><span class="i-code">0xe808</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xe83f">
|
||||
<i class="demo-icon icon-tree"></i> <span class="i-name">icon-tree</span><span class="i-code">0xe83f</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf019">
|
||||
<i class="demo-icon icon-globe"></i> <span class="i-name">icon-globe</span><span class="i-code">0xf019</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf1a0">
|
||||
<i class="demo-icon icon-google"></i> <span class="i-name">icon-google</span><span class="i-code">0xf1a0</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="the-icons span3" title="Code: 0xf1ea"><i class="demo-icon icon-newspaper"></i> <span class="i-name">icon-newspaper</span><span class="i-code">0xf1ea</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf1ec"><i class="demo-icon icon-calc"></i> <span class="i-name">icon-calc</span><span class="i-code">0xf1ec</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf230"><i class="demo-icon icon-facebook"></i> <span class="i-name">icon-facebook</span><span class="i-code">0xf230</span></div>
|
||||
<div class="the-icons span3" title="Code: 0xf232"><i class="demo-icon icon-whatsapp"></i> <span class="i-name">icon-whatsapp</span><span class="i-code">0xf232</span></div>
|
||||
<div class="span3" title="Code: 0xf1b9">
|
||||
<i class="demo-icon icon-car"></i> <span class="i-name">icon-car</span><span class="i-code">0xf1b9</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf1ea">
|
||||
<i class="demo-icon icon-newspaper"></i> <span class="i-name">icon-newspaper</span><span class="i-code">0xf1ea</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf1ec">
|
||||
<i class="demo-icon icon-calc"></i> <span class="i-name">icon-calc</span><span class="i-code">0xf1ec</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf230">
|
||||
<i class="demo-icon icon-facebook"></i> <span class="i-name">icon-facebook</span><span class="i-code">0xf230</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="the-icons span3" title="Code: 0xf277"><i class="demo-icon icon-map-signs"></i> <span class="i-name">icon-map-signs</span><span class="i-code">0xf277</span></div>
|
||||
<div class="span3" title="Code: 0xf232">
|
||||
<i class="demo-icon icon-whatsapp"></i> <span class="i-name">icon-whatsapp</span><span class="i-code">0xf232</span>
|
||||
</div>
|
||||
<div class="span3" title="Code: 0xf277">
|
||||
<i class="demo-icon icon-map-signs"></i> <span class="i-name">icon-map-signs</span><span class="i-code">0xf277</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container footer">Generated by <a href="http://fontello.com">fontello.com</a></div>
|
||||
<div class="container footer">Generated by <a href="https://fontello.com">fontello.com</a></div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Copyright (C) 2020 by original authors @ fontello.com</metadata>
|
||||
<metadata>Copyright (C) 2022 by original authors @ fontello.com</metadata>
|
||||
<defs>
|
||||
<font id="fontello" horiz-adv-x="1000" >
|
||||
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
||||
|
@ -12,6 +12,8 @@
|
|||
|
||||
<glyph glyph-name="home" unicode="" d="M786 296v-267q0-15-11-25t-25-11h-214v214h-143v-214h-214q-15 0-25 11t-11 25v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-3-7 1-12 6l-35 41q-4 6-3 13t6 12l401 334q18 15 42 15t43-15l136-113v108q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q6-4 6-12t-4-13z" horiz-adv-x="928.6" />
|
||||
|
||||
<glyph glyph-name="photo" unicode="" d="M357 529q0-45-31-76t-76-32-76 32-31 76 31 76 76 31 76-31 31-76z m572-215v-250h-786v107l178 179 90-89 285 285z m53 393h-893q-7 0-12-5t-6-13v-678q0-7 6-13t12-5h893q7 0 13 5t5 13v678q0 8-5 13t-13 5z m89-18v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
|
||||
|
||||
<glyph glyph-name="clock" unicode="" d="M500 546v-250q0-7-5-12t-13-5h-178q-8 0-13 5t-5 12v36q0 8 5 13t13 5h125v196q0 8 5 13t12 5h36q8 0 13-5t5-13z m232-196q0 83-41 152t-110 111-152 41-153-41-110-111-41-152 41-152 110-111 153-41 152 41 110 111 41 152z m125 0q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
||||
|
||||
<glyph glyph-name="phone" unicode="" d="M786 158q0-15-6-39t-12-38q-11-28-68-60-52-28-103-28-15 0-30 2t-32 7-26 8-31 11-28 10q-54 20-97 47-71 44-148 120t-120 148q-27 43-46 97-2 5-10 28t-12 31-8 26-7 32-2 29q0 52 29 104 31 57 59 68 14 6 38 12t39 6q8 0 12-2 10-3 30-42 6-11 16-31t20-35 17-30q2-2 10-14t12-20 4-16q0-11-16-27t-35-31-34-30-16-25q0-5 3-13t4-11 8-14 7-10q42-77 97-132t131-97q1 0 10-6t14-8 11-5 13-2q10 0 25 16t30 34 31 35 28 16q7 0 15-4t20-12 14-10q14-8 30-17t36-20 30-17q39-19 42-29 2-4 2-12z" horiz-adv-x="785.7" />
|
||||
|
@ -41,4 +43,4 @@
|
|||
<glyph glyph-name="map-signs" unicode="" d="M974 684q5-5 5-13t-5-12l-79-79q-15-16-38-16h-750q-14 0-25 11t-11 25v143q0 14 11 25t25 11h322v35q0 15 10 25t25 11h72q14 0 25-11t10-25v-35h286q23 0 38-16z m-545-513h142v-285q0-15-10-25t-25-11h-72q-14 0-25 11t-10 25v285z m464 250q14 0 25-10t11-25v-143q0-15-11-25t-25-11h-750q-22 0-38 16l-79 79q-5 5-5 12t5 13l79 79q16 15 38 15h286v108h142v-108h322z" horiz-adv-x="1000" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
9
browserconfig.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|