Skip to content

Latest commit

 

History

History
174 lines (143 loc) · 7.02 KB

css.md

File metadata and controls

174 lines (143 loc) · 7.02 KB

css

/* locally override a variable*/
div {
    color: var(--main-color, blue);
}
/* responsiveness */

:root {
  --max-width: 1200px;
}

@media (max-width: 768px) {
  :root {
    --max-width: 100%;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
// global.d.ts
import React from "react";

declare module "react" {
  // augment CSSProperties here
  interface CSSProperties {
    "--value"?: string | number;
    "--size"?: string | number;
    "--thickness"?: string | number;
  }
}
<div className="radial-progress" style={{"--value":70}}>70%</div>
const style:React.CSSProperties = {
  padding:13,
  xxx: 13
};
getComputedStyle(document.documentElement)
  .getPropertyValue('--color-primary');

document.documentElement.style.setProperty(
  '--color-primary',
  'hsl(245deg, 100%, 40%)'
);

download files

bem

form data api

css

fonts

  • computer-modern

  • I'm also particularly impressed with the simplest of CSS that will make almost any webpage look good. ref

html {
  max-width:70ch;
  padding:2ch;
  margin:auto;
  color:#333;
  font-size:1.2em;
}
.enter {
  animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);)
}

.move {
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);)
}

.exit {
  animation-timing-function: cubic-bezier(0.5, 0, 0, 1);)
}

.sinful-layout-animation {
  transition height: 0.3s ease-in-out;
  /* no layout reflow */
  contain: layout;
}

style links

a[href$=".pdf"] {
  background: url('https://i.imgur.com/n8EHrrI.png')
  0 50% no-repeat;
  padding-left: 20px;
}