Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5166 links 

page 8 / 17

Liste des liens

324 results tagged css x
<length> - CSS | MDN
2017-03-30 18:15 - permalink -

Unités CSS et points par pouce

L’unité in ne représente pas un pouce physique de l’écran, mais 96px. Cela signifie que quelque soit la densité de pixel réelle de l’écran, elle est supposée correspondre à 96dpi. Sur les périphériques dotés d’une plus grande densité de pixel, 1in fera moins d’1 pouce physique. De la même manière, mm, cm, et pt ne sont pas des longueurs absolues.

Quelques exemples particuliers :

1in est toujours égal à 96px,
3pt est toujours égal à 4px,
25.4mm est toujours égal à 96px.
css
- https://developer.mozilla.org/fr/docs/Web/CSS/length
Animista
2017-03-10 11:47 - permalink -

Snippets paramétrables d'animations en pur CSS
via Yome

css
- http://animista.net/
Comment utiliser au mieux les pseudo-classes CSS :valid et :invalid
2017-03-1 19:15 - permalink -

Intéressant.
Via Yome

css formulaire
- https://buzut.fr/css-input-validation/
55 CSS Checkboxes
2017-02-24 15:48 - permalink -

via Kalvn

checkbox css html5 javascript
- http://freefrontend.com/css-checkboxes/
Les 30 Sélecteurs CSS à Absolument Connaître
2017-02-16 14:21 - permalink -

Une piqure de rappel, ça ne fait pas de mal.

css tutoriels
- https://code.tutsplus.com/fr/tutorials/the-30-css-selectors-you-must-memorize--net-16048
WebSlides: Create Beautiful HTML Presentations
2017-02-12 10:56 - permalink -

Pour créer des présentations HTML rapidement.

css html5 powerpoint présentation
- https://webslides.tv/
HTML5 UP! Responsive HTML5 and CSS3 Site Templates
2017-02-6 11:32 - permalink -

Des templates responsives.

css html responsive templates
- https://html5up.net/
Luke Haas - Projects
2017-01-27 2:36 - permalink -

Des projets utiles

css javascript outils regex tools
- https://lukehaas.me/projects/
You Don't Need JavaScript
2017-01-19 11:10 - permalink -

Différentes choses qu'on peut faire en pure CSS, sans Javascript: fenêtre modale, tooltips, carousel, treeview, menu...

via SebSauvage

animation css tools
- https://github.com/you-dont-need/You-Dont-Need-Javascript
Paletton - The Color Scheme Designer
2017-01-12 10:43 - permalink -

Un autre outil de sélection de couleurs.
via Marc

css design tools
- http://paletton.com/#uid=c0i361q4e0kllllQPcQujh5cnpA3ptQ
Color Supply
2017-01-11 14:15 - permalink -

Outil d'aide au choix de couleurs bien assorties. Très utile !
via Yome

css design tools
- http://colorsupplyyy.com/app/
Feedback needed: thème par défaut Shaarli
2017-01-3 17:58 - permalink -

Sans vouloir te vexer, il n'est pas terrible, terrible (voir mon commentaire sur la version de démo).

css design responsive shaarli
- https://links.hoa.ro:443/?TZm3ZQ
Flexible Boxes
2016-12-16 17:45 - permalink -

Générateur de "squelette" Flexbox
via Shazen

css flexbox framework outils
- http://flexible-boxes.wstone.io/#~(1~(t~%27body~d~%27column~c~(~2~3~4))~2~(t~%27header)~3~(t~%27main~g~1~c~(~5~6~7))~4~(t~%27footer)~5~(t~%27sidebarL~s~0~b~%27150px)~6~(g~1)~7~(t~%27sidebarR~s~0~b~%27150px))
Tutoriels | MDN
2016-12-14 10:27 - permalink -

Une série de tutoriels sur les technologies du web : html, css, javascript

css html javascript tutoriels web
- https://developer.mozilla.org/fr/docs/Web/Tutoriels
CSS Reference - A free visual guide to the most popular CSS properties.
2016-11-23 16:38 - permalink -
css référence tutoriels
- http://cssreference.io/
Epargner le téléchargement des polices dans une page web à vos utilisateurs - Liens en vrac de sebsauvage
2016-11-23 16:31 - permalink -

Epargner le téléchargement des polices dans une page web à vos utilisateurs
Je trouve ça particulièrement pénible, alors je ne le fais pas subir à mes lecteurs: Je n'inclue pas dans mes pages de polices à télécharger.
Comment faire pour que l'aspect soit le plus proche de ce que je souhaite ne sachant pas les polices pré-installées chez l'internaute ?

En principe en CSS on a les font-stacks: Vous spécifiez plusieurs polices (d'aspect graphique proche), et le navigateur prendra en premier la police disponible dans le système.
Exemple typique:
font-family: Arial,Helvetica,sans-serif;
Si Arial n'est dispo, il essaiera avec Helvetica, etc.

Mais si je veux une police particulière, comme "Droid Sans", comment trouver la font-stack la plus fidèle, la plus proche de cette police ?
Et bien on peut trouver !

  • Allez sur cette page: http://www.identifont.com/similar.html
  • Entrez le nom de la police qui vous intéresse.
  • Cliquez "ok".
    Et dans la colonne de gauche vous verrez les noms des polices qui sont graphiquement les plus proches. Vous n'avez plus qu'à mettre dans votre CSS.

Exemple: pour "Droid Sans", on obtient:
font-family: "Droid Sans","Noto Sans","Ascender Uni","Linotype Aroma","FF Kievit","Source Sans","Open Sans","Museo Sans","Myriad","Camphor","Corbel","Frutiger","Vectora","Calibri",sans-serif;

Vous pouvez également compléter avec ces font-stacks: http://www.cssfontstack.com/ (même si je trouve qu'elles sont trop limitées).
Certes c'est loin d'être idéal et je n'ai aucune garantie, mais je préfère ça.

Si vous voulez vérifier si une police existe en standard sous Windows ou MacOSX:
https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
https://en.wikipedia.org/wiki/List_of_typefaces_included_with_macOS

astuce css
- http://sebsauvage.net/links/?SOYZoA
MaintainableCSS - an approach to writing modular, scalable and maintainable CSS | By Adam Silver
2016-11-3 1:35 - permalink -

À lire. Sur le principe, c'est pas idiot.

css tutoriels
- http://maintainablecss.com/
FUKOL
2016-10-21 17:53 - permalink -

Rien que le nom, je suis fan.
La puissance de Flex-box est énorme :

Fukol Grid System

Fukol™ is a lightweight, breakpoint free, completely responsive, element query driven*, progressive enhancement based CSS grid framework. It exists in this README.md file, in the section titled The CSS (below). It is 93 bytes minified, fitting comfortably inside a tweet:

Just edit the lines marked 'edit me!' to your requirements and write an HTML structure like the one illustrated in the section titled The HTML (also below).

(* Not really, but kind of. See 3 under Notes, below.)

The CSS

.fukol-grid {
  display: flex; /* 1 */
  flex-wrap: wrap; /* 2 */
  margin: -0.5em; /* 5 (edit me!) */
}

.fukol-grid > * {
  flex: 1 0 5em; /* 3 (edit me!) */
  margin: 0.5em; /* 4 (edit me!) */
}

The HTML

<div class="fukol"> <!-- 6 -->
  <ul class="fukol-grid">
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
    <li><!-- grid cell/item/child/whatever --></li>
  </ul>
</div>

Notes

  1. Fukol™ is a Flexbox based grid system. Even Opera Mini supports Flexbox. Older user agents that don't support Flexbox ignore the display: flex declaration, degrading to a single column layout. No harm done.
  2. This line determines how items are handled. The wrap value means items will start a new row if there's not enough room on the current one.
  3. This is the 'element query' part. Instead of setting an arbitrary number of columns and using breakpoints, we decide roughly how wide we want the item to be (5em in the example — the flex basis) and make sure items can grow to use the available space (1) but not shrink (0). So only change the 5em value and leave 1 0 as it is.
  4. This is for gutters. A 0.5em margin here means gutters of 1em (the margins double up).
  5. This should always be a negative version of 4. It compensates for the margins created by the items. It makes sure the outside of the .fukol-grid container remains flush horizontally and no additional margin is added to the vertical flow.
  6. The class="fukol" container in the HTML snippet enables you to add positive margins around the grid — not possible with just .fukol-grid because this uses negative margins (see 5). It also suppresses horizontal scrolling issues which occur under certain circumstances.

Demos

Here's a gif

Grid items as boxes, collapsing into fewer columns at smaller viewports automatically

Play around on CodePen

codepen.io/heydon/pen/dpzwVd

Items with different widths

Sometimes you want certain items to be narrower or wider. Maybe you want the fifth item to always be approximately twice the size of a regular item (where space permits). If the regular flex-basis is 5em, then…

.fukol-grid > *:nth-child(5) {
  flex-basis: 10em;
}

Don't worry, flexbox will make sure there aren't any gaps.

Percentage widths

You can choose a percentage based width for individual items, but remember to adjust for the gutter margin with by subtracting it using calc. For example, to make the first item 100% in width when the gutter width is 1em, use:

.fukol-grid > *:first-child {
  flex-basis: calc(100% - 1em);
}

Warning: Internet Explorer does not respect box-sizing on flex-basis items. In which case, if you use percentage widths, you cannot pad the flex item directly. You will need to insert child nodes inside flex items and pad them instead.

<div class="fukol"> <!-- 6 -->
  <ul class="fukol-grid">
    <li>
      <div><!-- pad this --></div>
    </li>
  </ul>
</div>

RTL Grids

Flexbox supports rtl already. Just add dir="rtl" to the .fukol-grid element and the flex direction will automatically be reversed.

FAQs

  1. How do I install Fukol™? Is it on bower/npm? You install it by copy/pasting it from this README.md file. See the The CSS section above.
  2. How do I pronounce Fukol? Fukol is pronounced "the square root of fuck all".
  3. Is Fukol™ the answer to all my grid system hopes and dreams? No. Fukol™ is just a servicable solution, written with very little code.
  4. Why are there a load of old dicks in the Fukol™ logo? Are you some sort of misogynist? No, fuck the patriarchy. There are a load of old dicks in Fukol™'s logo because grid systems are a load of old dicks.
  5. Is there a Sass version? Yes: inside your head.

That's it

That's it.

css flexbox grille
- https://github.com/Heydon/fukol-grids
CSS ICON -- project by Wenting Zhang
2016-10-18 17:35 - permalink -

Des icônes en css pur. Énorme...

css icones
- http://cssicon.space/#/
You Might Not Need JavaScript
2016-10-13 12:9 - permalink -

Comment remplacer javascript par du css (en l'occurence ici du scss).
Ce n'est quand même pas toujours aussi simple...

css javascript
- http://youmightnotneedjs.com/
page 8 / 17


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2