- Un bonnet, ou passe montagne
- Une casquette
- Une paire de lunettes de soleil haute protection
- Crème de protection solaire pour le visage et les lèvres
- Un masque de ski
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JS | |
$('.delete-confirmable').click(function (e){ | |
e.preventDefault(); | |
$(this).hide(); | |
$($(this).data('target')).removeClass('hidden'); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/simple_form.rb | |
# SimpleForm config for Semantic-UI | |
# Use this setup block to configure all options available in SimpleForm. | |
SimpleForm.setup do |config| | |
# Wrappers are used by the form builder to generate a | |
# complete input. You can remove any component from the | |
# wrapper, change the order or even add your own to the | |
# stack. The options given below are used to wrap the | |
# whole input. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient*/ | |
#banner{ | |
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("http://lorempixel.com/1400/800/"); | |
background-size: cover; | |
margin: 0; | |
height: 100vh; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="video-wrapper"></div> | |
<iframe class="my-video" src="https://www.youtube.com/embed/TLPvy5d3lo4?rel=0&controls=0&showinfo=0" frameborder="0" gesture="media" allow="encrypted-media"></iframe> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ app/views/layouts/application.html.slim | |
doctype html | |
html | |
head | |
meta charset="UTF-8" | |
meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" | |
title title | |
= favicon_link_tag 'favicon.png' | |
= csrf_meta_tags |
OlderNewer