asciibird/src/style.css

64 lines
1.2 KiB
CSS
Raw Normal View History

/* tailwind css */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* tailwind css */
/* custom css */
@font-face {
font-family: 'Hack';
src: url('assets/hack-regular.woff2') format('woff2'), url('assets/hack-regular.woff2') format('woff');
font-weight: 400;
font-style: normal;
font-display: swap;
}
2021-08-12 01:52:40 +00:00
@import url('https://use.fontawesome.com/releases/v5.0.9/css/all.css');
body {
2021-08-16 07:03:53 +00:00
background: rgb(58, 58, 58);
}
2021-08-16 07:03:53 +00:00
.canvas {
position: absolute;
font-family: "Hack";
2021-08-16 07:03:53 +00:00
background-color: rgba(255, 255, 255, 0.4);
border: lightgrey 1px solid;
z-index: 0;
}
.previewcanvas {
background: rgba(0, 0, 0, 0.1);
border: lightgrey 1px solid;
z-index: 0;
}
.context-menu {
position: fixed;
background: white;
z-index: 999;
outline: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
cursor: pointer;
}
.reverseorder {
display: flex;
flex-direction: column-reverse;
}
.brushcanvas {
background: rgba(0, 0, 0, 0.1);
border: lightgrey 1px solid;
z-index: 0;
}
.canvastools {
position: absolute;
font-family: "Hack";
z-index: 10;
2021-08-16 07:11:57 +00:00
opacity: 0.7;
2021-08-16 07:03:53 +00:00
cursor: crosshair;
2021-08-12 01:52:40 +00:00
}