{"id":274,"date":"2020-10-28T08:20:55","date_gmt":"2020-10-28T08:20:55","guid":{"rendered":"https:\/\/italochalet.com\/appartamenti-a-livigno\/"},"modified":"2020-11-21T16:49:11","modified_gmt":"2020-11-21T16:49:11","slug":"appartamenti-a-livigno","status":"publish","type":"page","link":"https:\/\/italochalet.com\/en\/appartamenti-a-livigno\/","title":{"rendered":"Apartments in Livigno in Chalet"},"content":{"rendered":"<div id=\"cs-content\" class=\"cs-content\" >\n<div class=\"e274-1 x-section\" >\n    \n<div class=\"x-bg\" aria-hidden=\"true\" >\n    <div class=\"x-bg-layer-upper-image\" style=\" background-image: url(https:\/\/italochalet.com\/wp-content\/uploads\/DSC_5905.jpg); background-repeat: no-repeat; background-position: center; background-size: cover;\" ><\/div><\/div>\n  \n<div class=\"e274-2 x-row x-container max width\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-3 x-col\" >\n    &nbsp;<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n\n<div class=\"e274-4 x-section\" style=\" background: rgb(255,255,255); background: linear-gradient(176deg, rgba(255,255,255,1) 22%, rgba(44,62,80,0.3113446062018558) 100%); About this tool CSS Gradient  CSS Gradient is a happy little website and free tool that lets you create a gradient background for websites. Besides being a css gradient generator, the site is also chock-full of colorful content about gradients from technical articles to real life gradient examples like Stripe and Instagram. Why did you make this?  See gradients were super played out back in the early web days, but now they\u2019re so ubiquitous that you\u2019d be remiss not to drop them in your site, interface, or next hair dye job.  Also, I&#039;m part of a group of makers with a mission to build a better internet, one digital project at a time. One of our recent project launches is Cool Backgrounds another free design tool to generate background wallpaper for websites, blogs and phones. Linear Gradient CSS reference CSS Gradient Text tutorial 16 Super Fire CSS Gradient Examples article Radial Gradient CSS reference Color shades Color Shades  What&#039;s the foundation for beautiful gradients? Gorgeous shades of color, of course! Our color shades pages curate a selection of popular colors, whether you&#039;re looking for that wonderful soft baby blue or hyper lime green, check out the shades pages. Shades of Blue Shades of Red Shades of Green Css gradient swatches Swatches  Don\u2019t have enough time to make your own gradients? Looking for a supply of popular gradients you can use for your projects? Our swatch collection features a curated selection of gorgeous gradients and color combinations free for you to use however you\u2019d like. Each swatch comes with the basic code you\u2019ll need to implement it on your own website. Browse the gallery Css gradient examples Examples  If you need a little inspiration before getting started on your own, our gradient examples page is the best place to go. Sometimes all you need is a little push\u2014a source to jumpstart your creativity, and a couple gradient examples could do just that for you. From Stripe to Scale API, browse the examples to give you that jumpstart you need to start making fresh gradients on your own. Get inspired Css gradient blog Blog  Interested in learing how to use blended colors? Our blog exposes the details of everything gradients and even has some in-depth references for you to look at as you learn how to code these elements yourself. Browse through our references, tutorials, and articles for more information all about gradients. Learn new tricks Css gradient resources Resources  Is the basic information not enough for you? Want to learn more about the inner-workings of gradients and everything to do with them? We\u2019ve gathered some killer resources to help you become a gradient expert, and they\u2019re all available for you here on our resources page. If you\u2019re the kind of person who is always seeking more knowledge, this is the page for you. Dive deep into gradients What is a gradient?  Gradients are CSS elements of the image data type that show a transition between two or more colors. These transitions are shown as either linear or radial. Because they are of the image data type, gradients can be used anywhere an image might be. The most popular use for gradients would be in a background element.  To put it more relevantly, gradients are part of an extremely popular design trend that has been gaining popularity over the last several years. It seems that they have always been around in the background (no pun intended); although, some sources claim that the trend is \u201ccoming back\u201d. Of course, it\u2019s hard for something to come back if it never left, but we\u2019ll chalk that up to semantics.  Gradients allow you\u2014the designer\u2014to explore new opportunities to provide fresh, clean designs for your audience. The added transition between colors allows you to play with two-dimensional and seemingly three-dimensional aspects, taking your designs from boring to extraordinary with some simple code.  In fact, the best thing about gradient code is that it can be as simple or as complex as you\u2019d like to make it. You can do the bare minimum and let the browser figure out the rest, or you can take things into your own hands and identify all the odds and ends. You could even do a little extra if you wanted and explore the endless possibilities of gradients. Linear Gradients  Transitions in linear gradients occur along a straight line determined by an angle or direction. A CSS linear gradient can be coded by using the linear-gradient() function and can be as simple or complex as you would like. At the very least, you\u2019ll only need two colors to get started. From there, you could add more colors, angles, directions, and more to customize your gradient even further. Code  background-image: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);  Result  If you leave the code at its most basic styling, the other elements will be determined automatically by the browser. This includes the direction or angle and color-stop positions. For more customized styling, you can specify these values to create fun gradients with multiple colors or angled directions. Playing with color-stop positions could also leave you with a solid pattern instead of a traditional gradient. The possibilities are endless!  Compared to radial gradients, linear gradients are certainly more popular in design and branding techniques. For example, you may have noticed the popular music-streaming company, Spotify, and their gradient branding recently. Linear gradients are, perhaps, the easiest way to incorporate this trend into your creations, as they seem to blend smoothly with other design elements. Radial Gradients  A CSS radial gradient\u2014although far less often seen\u2014is just as beautiful and fun as a linear gradient and can be implemented just as easily. With that said, the code may seem more difficult to figure out at first. It is for this reason that, for some designers, it may be easier to start out with a linear gradient. Code  background-image: radial-gradient(circle, #5c0067 0%, #00d4ff 100%);  Result  Of course, the code isn\u2019t actually all that complicated at all. In fact, most of the code is exactly the same as that of the linear gradient\u2014with just a few tweaks for extra radial customization. For example, unlike with linear gradients, you can actually adjust the size of radial gradients in place of where the direction would normally go. Playing with the different values that determine these sizes can give you a lot of different results.  While radial gradients may not be as popular as their linear counterparts, it\u2019s possible that you might have seen them more often than you think. Special CSS techniques can leave you with designs that may be unrecognizable when it comes to the typical idea of what a linear or radial gradient may look like. In the end, radial gradients are just as powerful to use and can give your designs an extra kick of something special. Repeating Linear Gradient CSS reference How to create a gradient in Photoshop tutorial How to create a gradient background tutorial You Crazy? Patterns with CSS Gradients article\" >\n    \n<div class=\"x-bg\" aria-hidden=\"true\" >\n    <\/div>\n  \n<div class=\"e274-5 x-row x-container max width\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-6 x-col\" >\n    \n<div class=\"e274-7 x-text x-text-headline\" >\n  <div class=\"x-text-content\"><div class=\"x-text-content-text\"><span class=\"x-text-content-text-primary\">Apartments in Via Saroch<\/span><\/div><\/div><\/div>\n\n<hr class=\"e274-8 x-line\" >\n<\/div>\n  <\/div>\n  <\/div>\n\n<div class=\"e274-9 x-row x-container max width\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-10 x-col\" >\n    \n<div class=\"e274-11 x-text\" >\n  <p>Next to the pedestrian zone, enjoying the protection of the forest offering peace, silence and woody scents, is our small <strong>alpine-style<\/strong> house. Recently rebuilt according to <strong>environmentally sustainable<\/strong> and <strong>energy saving criteria<\/strong>, it is in an ideal location, close to the <strong>cycle path<\/strong>, the<strong> bus stop<\/strong> and the supermarket. For sports enthusiasts who love skiing, the lifts for the <strong>Carosello 3000<\/strong> slopes are just 500 metres away, and for bikers who want to try their hand at trekking, the demanding \"<strong>sentiero delle baite<\/strong>\" trail is also nearby.<\/p>\n<p>After the sporting and recreational activity of your choice, pizzoccheri, sciatt, pizza and the excellent Valtellinese wine await you in one of the many traditional restaurants located a stone's throw from the house.<\/p>\n<p>Finally, for complete <strong>relaxation<\/strong>, you can sunbathe in the lovely outdoor garden or treat yourself to a wellness treatment in the <strong>spa<\/strong> of the nearby hotel.<\/p>\n<p><img src=\"https:\/\/italochalet.com\/wp-content\/uploads\/appartamento-livigno-via-saroch.jpg\" alt=\"\" class=\"alignnone size-full wp-image-142\" width=\"600\" height=\"400\" \/><\/p><\/div>\n<\/div>\n  <\/div>\n  <\/div>\n\n<div class=\"e274-12 x-row x-container max width\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-13 x-col\" >\n    \n<div class=\"e274-14 cs-content x-global-block x-global-block-118\" >\n<div class=\"e118-1 x-section\" >\n      \n<div class=\"e118-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e118-3 x-col\" >\n    \n<div class=\"e118-4 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e118-5 x-col\" >\n    \n<div class=\"e118-6 x-text x-text-headline\" >\n  <div class=\"x-text-content\">\n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<i class=\"x-icon x-graphic-icon x-graphic-primary\" aria-hidden=\"true\" data-x-icon-o=\"&#xf276;\" ><\/i>\n\n<\/span>\n<div class=\"x-text-content-text\"><h1 class=\"x-text-content-text-primary\">Via Saroch<\/h1><\/div><\/div><\/div>\n\n<div class=\"e118-7 cs-content x-global-block x-global-block-270\" >\n<div class=\"e270-1 x-section\" >\n      \n<div class=\"e270-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e270-3 x-col\" >\n    \n<a class=\"e270-4 x-anchor x-anchor-button\" tabindex=\"0\" href=\"https:\/\/italochalet.com\/appartamenti-a-livigno\/appartamento-vetta-livigno\/\" >\n\n  \n  <div class=\"x-anchor-content\">\n    \n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<span class=\"e270-4 x-image x-graphic-image x-graphic-primary\" data-x-single-anim=\"x-scale-up\" >\n  <img alt=\"Vetta\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/box-vetta.jpg\" width=\"400\" height=\"300\" >\n<\/span>\n\n<\/span>\n    <div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\" data-x-single-anim=\"x-flip-x\" ><b>Vetta<\/b> Apartment<\/span><\/div>      <\/div>\n\n    \n<span class=\"x-particle x-anchor-particle-primary\" data-x-particle=\"scale-y inside-t_c\" aria-hidden=\"true\" >\n  <span><\/span>\n<\/span>\n\n  \n<\/a>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n\n<div class=\"e118-8 x-col\" >\n    \n<div class=\"e118-9 cs-content x-global-block x-global-block-266\" >\n<div class=\"e266-1 x-section\" >\n      \n<div class=\"e266-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e266-3 x-col\" >\n    \n<a class=\"e266-4 x-anchor x-anchor-button\" tabindex=\"0\" href=\"https:\/\/italochalet.com\/appartamenti-a-livigno\/appartamento-rin-livigno\/\" >\n\n  \n  <div class=\"x-anchor-content\">\n    \n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<span class=\"e266-4 x-image x-graphic-image x-graphic-primary\" data-x-single-anim=\"x-scale-up\" >\n  <img alt=\"Rin\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/box-rin.jpg\" width=\"400\" height=\"300\" >\n<\/span>\n\n<\/span>\n    <div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\" data-x-single-anim=\"x-flip-x\" ><b>Rin<\/b> Apartment<\/span><\/div>      <\/div>\n\n    \n<span class=\"x-particle x-anchor-particle-primary\" data-x-particle=\"scale-y inside-t_c\" aria-hidden=\"true\" >\n  <span><\/span>\n<\/span>\n\n  \n<\/a>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n\n<div class=\"e118-10 x-col\" >\n    \n<div class=\"e118-11 cs-content x-global-block x-global-block-264\" >\n<div class=\"e264-1 x-section\" >\n      \n<div class=\"e264-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e264-3 x-col\" >\n    \n<a class=\"e264-4 x-anchor x-anchor-button\" tabindex=\"0\" href=\"https:\/\/italochalet.com\/appartamenti-a-livigno\/appartamento-pozz-livigno\/\" >\n\n  \n  <div class=\"x-anchor-content\">\n    \n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<span class=\"e264-4 x-image x-graphic-image x-graphic-primary\" data-x-single-anim=\"x-scale-up\" >\n  <img alt=\"Pozz\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/box-pozz.jpg\" width=\"400\" height=\"300\" >\n<\/span>\n\n<\/span>\n    <div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\" data-x-single-anim=\"x-flip-x\" ><b>Pozz<\/b> Apartment<\/span><\/div>      <\/div>\n\n    \n<span class=\"x-particle x-anchor-particle-primary\" data-x-particle=\"scale-y inside-t_c\" aria-hidden=\"true\" >\n  <span><\/span>\n<\/span>\n\n  \n<\/a>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n  <\/div>\n  <\/div>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n  <\/div>\n  <\/div>\n\n<div class=\"e274-15 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-16 x-col\" >\n    \n<span class=\"e274-17 x-image\" >\n  <img alt=\"Image\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/mountain-livigno.png\" width=\"2500\" height=\"861\" >\n<\/span>\n<\/div>\n  <\/div>\n  \n<div class=\"x-bg\" aria-hidden=\"true\" >\n    <\/div>\n<\/div>\n  <\/div>\n\n<div class=\"e274-18 x-section\" >\n    \n<div class=\"x-bg\" aria-hidden=\"true\" >\n    <\/div>\n    <\/div>\n\n<div class=\"e274-19 x-section\" >\n    \n<div class=\"x-bg\" aria-hidden=\"true\" >\n    <\/div>\n  \n<div class=\"e274-20 x-row x-container max width\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e274-21 x-col\" >\n    \n<div class=\"e274-22 x-text x-text-headline\" >\n  <div class=\"x-text-content\"><div class=\"x-text-content-text\"><span class=\"x-text-content-text-primary\">Apartments in Via Dala Gesa<\/span><\/div><\/div><\/div>\n\n<hr class=\"e274-23 x-line\" >\n\n<div class=\"e274-24 x-text\" >\n  <p><strong>North<\/strong> of Livigno, in a central area and near the lake. The building is a stone's throw from the <strong>Church of Santa Maria Nascente<\/strong>, with its characteristic, unmistakeable bell tower, in a position that will satisfy both lovers of nature and those who prefer shopping. Indeed, upon leaving the building, the <strong>shopping streets<\/strong> that have made Livigno famous begin on the left; on the right, the walks among greenery and towards the <strong>lake<\/strong> begin, <strong>hiking trails<\/strong>, with a destination to head for: the <strong>dairy<\/strong> where you can sip fresh milk and taste the cheeses of the valley.<\/p>\n<p>If you don't want to use the car, there is a <strong>shuttle bus stop<\/strong> right in front of the apartment.<\/p>\n<p>In addition, you can enjoy the convenience of a <strong>reserved parking<\/strong> space and the benefit of a garden where you can relax, among pine and fir trees.<\/p>\n<p><img src=\"https:\/\/italochalet.com\/wp-content\/uploads\/appartamento-livigno-via-dala-gesa.jpg\" alt=\"\" class=\"alignnone size-full wp-image-141\" width=\"600\" height=\"400\" \/><\/p><\/div>\n\n<div class=\"e274-25 cs-content x-global-block x-global-block-272\" >\n<div class=\"e272-1 x-section\" >\n      \n<div class=\"e272-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e272-3 x-col\" >\n    \n<div class=\"e272-4 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e272-5 x-col\" >\n    \n<div class=\"e272-6 x-text x-text-headline\" >\n  <div class=\"x-text-content\">\n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<i class=\"x-icon x-graphic-icon x-graphic-primary\" aria-hidden=\"true\" data-x-icon-o=\"&#xf276;\" ><\/i>\n\n<\/span>\n<div class=\"x-text-content-text\"><h1 class=\"x-text-content-text-primary\">Via Dala Gesa<\/h1><\/div><\/div><\/div>\n\n<div class=\"e272-7 cs-content x-global-block x-global-block-268\" >\n<div class=\"e268-1 x-section\" >\n      \n<div class=\"e268-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e268-3 x-col\" >\n    \n<a class=\"e268-4 x-anchor x-anchor-button\" tabindex=\"0\" href=\"https:\/\/italochalet.com\/appartamenti-a-livigno\/appartamento-salient-livigno\/\" >\n\n  \n  <div class=\"x-anchor-content\">\n    \n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<span class=\"e268-4 x-image x-graphic-image x-graphic-primary\" data-x-single-anim=\"x-scale-up\" >\n  <img alt=\"Salient\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/box-salient.jpg\" width=\"400\" height=\"300\" >\n<\/span>\n\n<\/span>\n    <div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\" data-x-single-anim=\"x-flip-x\" ><b>Salient<\/b> Apartment<\/span><\/div>      <\/div>\n\n    \n<span class=\"x-particle x-anchor-particle-primary\" data-x-particle=\"scale-y inside-t_c\" aria-hidden=\"true\" >\n  <span><\/span>\n<\/span>\n\n  \n<\/a>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n\n<div class=\"e272-8 x-col\" >\n    \n<div class=\"e272-9 cs-content x-global-block x-global-block-261\" >\n<div class=\"e261-1 x-section\" >\n      \n<div class=\"e261-2 x-row\" >\n  <div class=\"x-row-inner\">\n    \n<div class=\"e261-3 x-col\" >\n    \n<a class=\"e261-4 x-anchor x-anchor-button\" tabindex=\"0\" href=\"https:\/\/italochalet.com\/appartamenti-a-livigno\/appartamento-pemont-livigno\/\" >\n\n  \n  <div class=\"x-anchor-content\">\n    \n<span class=\"x-graphic\" aria-hidden=\"true\" >\n\n  \n<span class=\"e261-4 x-image x-graphic-image x-graphic-primary\" data-x-single-anim=\"x-scale-up\" >\n  <img alt=\"Pemont\" src=\"https:\/\/italochalet.com\/wp-content\/uploads\/box-pemont.jpg\" width=\"400\" height=\"300\" >\n<\/span>\n\n<\/span>\n    <div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\" data-x-single-anim=\"x-flip-x\" ><b>Pemont<\/b> Apartment<\/span><\/div>      <\/div>\n\n    \n<span class=\"x-particle x-anchor-particle-primary\" data-x-particle=\"scale-y inside-t_c\" aria-hidden=\"true\" >\n  <span><\/span>\n<\/span>\n\n  \n<\/a>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n\n<div class=\"e272-10 x-col\" >\n    \n<div class=\"e272-11 x-text\" >\n  <p>Chalet Italo. International family hospitality.<\/p>\n<p><a  class=\"x-btn\"  href=\"https:\/\/italochalet.com\/en\/appartamenti-a-livigno\/\"     data-options=\"thumbnail: ''\">Discover more<\/a><\/p><\/div>\n<\/div>\n  <\/div>\n  <\/div>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<script><\/script><\/div>\n<\/div>\n  <\/div>\n  <\/div>\n  <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Apartments in Livigno in Via Saroch and Via Dala Gesa. Choose between those adjacent to the pedestrian area and those north of Livigno, in the central area and near the lake.<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-blank-4.php","meta":[],"_links":{"self":[{"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/pages\/274"}],"collection":[{"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/comments?post=274"}],"version-history":[{"count":5,"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/pages\/274\/revisions"}],"predecessor-version":[{"id":303,"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/pages\/274\/revisions\/303"}],"wp:attachment":[{"href":"https:\/\/italochalet.com\/en\/wp-json\/wp\/v2\/media?parent=274"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}