DNDGamePlayer: Electron редактор сцен, презентация, упаковка electron-builder

Made-with: Cursor
This commit is contained in:
Ivan Fontosh
2026-04-19 14:16:54 +08:00
commit a6cbcc273e
82 changed files with 22195 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
@import '../styles/variables.css';
@import url('https://fonts.cdnfonts.com/css/nimbus-sans');
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
}
html {
background: var(--bg0);
}
body {
margin: 0;
font-family: var(--font);
color: var(--text0);
background: var(--bg0);
}
a {
color: inherit;
text-decoration: none;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.08);
border: 2px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.12);
border: 2px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
}
button,
input,
textarea {
font: inherit;
color: inherit;
}
::selection {
background: var(--selection-bg);
}