/* * Prefixed by https://autoprefixer.github.io * PostCSS: v8.3.6, * Autoprefixer: v10.3.1 * Browsers: last 4 version */ :root { --thickness: 1px; --background: #9fd3a8; --font: "Pirelli"; } html, body { margin: 0; background-color: var(--background); font-size: 24px; font-family: var(--font); height: 100vh; cursor: pointer; } .bold { font-weight: bold; font-style: italic; font-size: 36px; } .info { display: inline-block; padding: 8px; background-color: var(--background); border: var(--thickness) solid currentColor; margin: 0; } #sticker-container { position: fixed; left: 0; top: 0; bottom: 0; right: 0; cursor: pointer; z-index: 100; } .sticker { position: absolute; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: var(--thickness) solid currentColor; border-radius: 16px; -webkit-box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); } .sticker.info { background-color: white; } .informations-list { display: none; } .sticker.deco { background-color: white; min-width: 48px; min-height: 48px; padding: 16px; } li { list-style: none; }