You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
/*
|
|
* 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;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
.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;
|
|
|
|
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: 64px;
|
|
min-height: 64px;
|
|
padding: 16px;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|