diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/about.css b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/about.css new file mode 100644 index 0000000..e31e0fd --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/about.css @@ -0,0 +1,40 @@ +body { + background-color: #708d81; +} + +img { + position: absolute; +} + +@keyframes rotation { + from {} + to { + transform: rotate(360deg); + } +} + +@keyframes scaling { + 0% { + transform: scale(1, 1); + } + 50% { + transform: scale(1.05, 1.05); + } + 100% { + transform: scale(1, 1); + } +} + +#backImage { + animation-name: rotation; + animation-duration: 5s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} + +#frontImage { + animation-name: scaling; + animation-duration: 1s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/actions.css b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/actions.css new file mode 100644 index 0000000..b5f6bfb --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/actions.css @@ -0,0 +1,137 @@ +#action-label { + padding: 10px 15px 10px 15px; + cursor: pointer; + outline: none; +} + +button.opener { + background-color: #36393e; + color: #eee; + cursor: pointer; + padding: 8px; + width: 100%; + border: none; + text-align: left; + outline: none; + font-size: 14px; + transition: 0.4s; +} + +button.openerChild { + background-color: #474b52; + color: #eee; + cursor: pointer; + padding: 6px; + width: 100%; + border: none; + text-align: left; + outline: none; + font-size: 12px; +} + +button.openerChild.active, button.openerChild:hover { + background-color: #53585f; +} + +button.opener:after { + content: '+'; + color: #777; + font-weight: bold; + float: right; + margin-left: 5px; +} + +button.openerChild:after { + color: #777; + font-weight: bold; + float: right; + margin-left: 5px; +} + +button.opener.active:after { + content: "-"; +} + +div.dropContent { + background-color: white; + max-height: 0; + overflow: hidden; + transition: max-height 0.2s ease-out; +} + +.ui.dropdown { + text-align: center; + width: 200px; +} + +input[type=text] { + width: 90%; +} + +.action-input { + margin: 0 auto; + padding-top: 6px; + max-width: 640px; + width: 94%; + height: 80%; +} + +.action-input h1 { + margin-top: 0; +} + +#theHead { + right: 0; + top: 0; + left: 0; + background-color: #242629; + text-align: center; +} + +.action-footer { + width: 100%; + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + background-color: #242629; + text-align: center; +} + +#leSideBarContent { + margin-right: 10px; + width: 220px; +} + +#leSideBar { + width: 232px; + margin: 10px; +} + +#leSideBar::-webkit-scrollbar { + width: 12px; + background-color: #242629; +} + +#leSideBar::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + border-radius: 10px; + background-color: #242629; +} + +#leSideBar::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); + background-color: #555; +} + +input::-webkit-calendar-picker-indicator { + opacity: 100; + background-color: transparent; + transform: scale(0.7, 0.7); +} + +input::-webkit-calendar-picker-indicator:hover { + background-color: transparent; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/emojis.css b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/emojis.css new file mode 100644 index 0000000..7f417a8 --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/emojis.css @@ -0,0 +1,24 @@ +.emojiButton { + background-color: #4CAF50; /* Green */ + border: none; + color: white; + width: 36px; + height: 36px; + padding: 2px 2px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + -webkit-transition-duration: 0.4s; /* Safari */ + transition-duration: 0.4s; + cursor: pointer; + background-color: white; + color: black; + border: 2px solid #4CAF50; +} + +.emojiButton:hover { + background-color: #4CAF50; + color: white; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/load.css b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/load.css new file mode 100644 index 0000000..fad529b --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/load.css @@ -0,0 +1,42 @@ +body { + background-color: #36393e; + color: #ccc; + font-size: 13px; +} + +img { + position: absolute; +} + +@keyframes rotation { + from {} + to { + transform: rotate(360deg); + } +} + +@keyframes scaling { + 0% { + transform: scale(1, 1); + } + 50% { + transform: scale(1.05, 1.05); + } + 100% { + transform: scale(1, 1); + } +} + +#backImage { + animation-name: rotation; + animation-duration: 5s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} + +#frontImage { + animation-name: scaling; + animation-duration: 1s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/main.css b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/main.css new file mode 100644 index 0000000..3c8f3c2 --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/css/main.css @@ -0,0 +1,293 @@ +p#settings-description { + color: #222; +} + +.ui.multiple.dropdown > .label { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + display: inline-block; + vertical-align: top; + white-space: normal; + font-size: 1em; + padding: 0.35714286em 0.78571429em; + margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; + box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; +} + +body { + color: #ccc; + background-color: #36393e; + overflow: hidden; + transition: 0.5s; +} + +body.running { + background-color: #001427 !important; +} + +a:link { + color: #99b3ff; +} + +div.action-holder { + width: 240px; + float: left; + max-width: 240px; + padding-top: 22px; +} + +div.event-action-holder { + width: 240px; + float: left; + max-width: 240px; + padding-top: 22px; +} + +select#commands { + overflow: hidden; + height: 120px; +} + +select#actions { + overflow: hidden; + position: static; +} + +div.footer { + position: static; + float: right; + width: 100%; + height: 100%; + right: 0px; + bottom: 100px; + left: 220px; + /*top: 400px;*/ + text-align: left; +} + +div.infooter { + padding-top: 49px; +} + +div.einfooter { + padding-top: 77px; +} + +div.actionButtonDiv { + width: 90%; + padding: 10px 10px 10px 0px; + text-align: left; +} + +button.actionButtons { + width: 120px; + padding-right: 20px; + padding-left: 20px; + float: right; +} + +div.tabs { + overflow: hidden; + border: 1px solid #ccc; + background-color: #f1f1f1; +} + +div.tabs button { + width: 33%; + background-color: inherit; + float: left; + border: none; + outline: none; + cursor: pointer; + padding: 12px 20px; + transition: 0.2s; +} + +div.tabs button:hover { + background-color: #ddd; +} + +div.tabs button.active { + background-color: #ccc; +} + +div.myactions { + overflow-y: auto; + overflow-x: hidden; + border: 1px solid #ccc; + background-color: #53585f; +} + +div.myactions button { + overflow: hidden; + width: 100%; + height: 20px; + text-align: left; + color: #e3e5e8; + background-color: #53585f; + float: left; + border: none; + outline: none; + cursor: pointer; + transition: 0.2s; +} + +div.myactions button:hover { + background-color: #777e88; +} + +div.myactions button.active { + background-color: #4676b9; +} + +div.emyactions { + overflow: auto; + overflow-x: hidden; + border: 1px solid #ccc; + background-color: #53585f; +} + +div.emyactions button { + overflow: hidden; + width: 100%; + height: 20px; + text-align: left; + color: #e3e5e8; + background-color: #53585f; + float: left; + border: none; + outline: none; + cursor: pointer; + transition: 0.2s; +} + +div.emyactions button:hover { + background-color: #777e88; +} + +div.emyactions button.active { + background-color: #4676b9; +} + +.page { + display: none; +} + +input { + color: #e3e5e8; + background-color: #53585f; + padding-bottom: 2px; +} + +textarea { + color: #e3e5e8; + background-color: #53585f; + border: 1px solid #eee; + border-radius: 4px; + box-sizing: border-box; + display: block; + padding-left: 8px; +} + +textarea:focus { + outline-width: 0; +} + +textarea::selection { + background: #b8dbff; +} + +select { + color: #e3e5e8; + background-color: #53585f; +} + +button#a_tab { + background-color: #4676b9; +} + +button#a_tab.active, button#a_tab.active:hover { + background-color: #315381; +} + +button#a_tab:hover { + background-color: #3f6aa6; +} + +input::selection { + background: #b8dbff; +} + +input:focus { + outline-width: 0; +} + +input#name, input#alias-input, input#ename, input#etemp, input#etemp2 { + border: 1px solid #eee; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +input.settings { + font-family: monospace; + width: 100%; + border: 1px solid #eee; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +input.round { + width: 100%; + border: 1px solid #eee; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +select.round { + width: 100%; + border: 1px solid #eee; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +::-webkit-scrollbar { + width: 8px; + height: 8px; + background-color: #36393e; +} + +::-webkit-scrollbar-track { + background-color: #36393e; +} + +::-webkit-scrollbar-thumb { + background-color: #e0e1e2; +} + +#aliases, #moduleManager { + height: 380px; + border-radius: 10px; + background-color: #36393e; + border: 2px solid black; +} + +.modalChild { + height: 240px; + margin-left: 70px; + margin-top: 15px; + overflow-y: scroll; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Back.png b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Back.png new file mode 100644 index 0000000..ce89b89 Binary files /dev/null and b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Back.png differ diff --git a/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Front.png b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Front.png new file mode 100644 index 0000000..4a13fd6 Binary files /dev/null and b/Discord Bot Maker/M0N7Y5/1.3.0_Backup/img/About-Front.png differ diff --git a/Discord Bot Maker/M0N7Y5/Readme.md b/Discord Bot Maker/M0N7Y5/Readme.md new file mode 100644 index 0000000..a5c83b1 --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/Readme.md @@ -0,0 +1,14 @@ +# M0N7Y5 DBM Themes +## Here is a collection of DBM themes made by me (M0N7Y5) + +### SimplyDark +Simple Dark theme. +![alt text](SimplyDark/screen/screen.png "Logo Title Text 1") + +## Installation +Copy **CSS** folder and **IMG** folder to your DBM folder and overwrite original files. + +## Uninstallation +Same as Installation, but now you must overwrite DBM files with files from **1.3.0_Backup** folder. + +*Note: **1.3.0_Backup** folder contain original files from DBM 1.3.0. Omg Dat plot twist ...* \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/Readme.md b/Discord Bot Maker/M0N7Y5/SimplyDark/Readme.md new file mode 100644 index 0000000..0551c8c --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/Readme.md @@ -0,0 +1,5 @@ +# Simply Dark +### Dark theme for Discord Bot Maker +**Compatible DBM:** 1.3.0 + +![alt text](screen/screen.png "Logo Title Text 1") \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/css/about.css b/Discord Bot Maker/M0N7Y5/SimplyDark/css/about.css new file mode 100644 index 0000000..d927f5f --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/css/about.css @@ -0,0 +1,76 @@ +body { + background-color: #36393e; +} + +img { + position: absolute; +} + +@keyframes rotation { + from {} + to { + transform: rotate(360deg); + } +} + + + +@keyframes scaling { + 0% { + transform: scale(1, 1); + } + 50% { + transform: scale(1.2, 1.2); + } + 100% { + transform: scale(1, 1); + } +} + +/** + * ---------------------------------------- + * animation rotate-center + * ---------------------------------------- + */ + @-webkit-keyframes rotate-center { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } + } + @keyframes rotate-center { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } + } + +body > div:nth-child(2){ + color: whitesmoke; +} + +#backImage { + margin-left: -5px; + margin-top: 10px; + width: 250px; + -webkit-animation: rotate-center 1s ease-in-out infinite both; + animation: rotate-center 1s ease-in-out infinite both; +} + +#frontImage { + margin-left: 45px; + margin-top: 55px; + width: 140px; + animation-name: scaling; + animation-duration: 1s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/css/actions.css b/Discord Bot Maker/M0N7Y5/SimplyDark/css/actions.css new file mode 100644 index 0000000..b5f6bfb --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/css/actions.css @@ -0,0 +1,137 @@ +#action-label { + padding: 10px 15px 10px 15px; + cursor: pointer; + outline: none; +} + +button.opener { + background-color: #36393e; + color: #eee; + cursor: pointer; + padding: 8px; + width: 100%; + border: none; + text-align: left; + outline: none; + font-size: 14px; + transition: 0.4s; +} + +button.openerChild { + background-color: #474b52; + color: #eee; + cursor: pointer; + padding: 6px; + width: 100%; + border: none; + text-align: left; + outline: none; + font-size: 12px; +} + +button.openerChild.active, button.openerChild:hover { + background-color: #53585f; +} + +button.opener:after { + content: '+'; + color: #777; + font-weight: bold; + float: right; + margin-left: 5px; +} + +button.openerChild:after { + color: #777; + font-weight: bold; + float: right; + margin-left: 5px; +} + +button.opener.active:after { + content: "-"; +} + +div.dropContent { + background-color: white; + max-height: 0; + overflow: hidden; + transition: max-height 0.2s ease-out; +} + +.ui.dropdown { + text-align: center; + width: 200px; +} + +input[type=text] { + width: 90%; +} + +.action-input { + margin: 0 auto; + padding-top: 6px; + max-width: 640px; + width: 94%; + height: 80%; +} + +.action-input h1 { + margin-top: 0; +} + +#theHead { + right: 0; + top: 0; + left: 0; + background-color: #242629; + text-align: center; +} + +.action-footer { + width: 100%; + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + background-color: #242629; + text-align: center; +} + +#leSideBarContent { + margin-right: 10px; + width: 220px; +} + +#leSideBar { + width: 232px; + margin: 10px; +} + +#leSideBar::-webkit-scrollbar { + width: 12px; + background-color: #242629; +} + +#leSideBar::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + border-radius: 10px; + background-color: #242629; +} + +#leSideBar::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); + background-color: #555; +} + +input::-webkit-calendar-picker-indicator { + opacity: 100; + background-color: transparent; + transform: scale(0.7, 0.7); +} + +input::-webkit-calendar-picker-indicator:hover { + background-color: transparent; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/css/emojis.css b/Discord Bot Maker/M0N7Y5/SimplyDark/css/emojis.css new file mode 100644 index 0000000..7f417a8 --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/css/emojis.css @@ -0,0 +1,24 @@ +.emojiButton { + background-color: #4CAF50; /* Green */ + border: none; + color: white; + width: 36px; + height: 36px; + padding: 2px 2px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + -webkit-transition-duration: 0.4s; /* Safari */ + transition-duration: 0.4s; + cursor: pointer; + background-color: white; + color: black; + border: 2px solid #4CAF50; +} + +.emojiButton:hover { + background-color: #4CAF50; + color: white; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/css/load.css b/Discord Bot Maker/M0N7Y5/SimplyDark/css/load.css new file mode 100644 index 0000000..58a2dbf --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/css/load.css @@ -0,0 +1,75 @@ +body { + background-color: #36393e; + color: #ccc; + font-size: 13px; +} + +img { + position: absolute; +} + +@keyframes rotation { + from {} + to { + transform: rotate(360deg); + } +} + +@keyframes scaling { + 0% { + transform: scale(1, 1); + } + 50% { + transform: scale(1.2, 1.2); + } + 100% { + transform: scale(1, 1); + } +} + + +/** + * ---------------------------------------- + * animation rotate-center + * ---------------------------------------- + */ + +@-webkit-keyframes rotate-center { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes rotate-center { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +#backImage { + margin-left: -5px; + margin-top: 10px; + width: 250px; + -webkit-animation: rotate-center 1s ease-in-out infinite both; + animation: rotate-center 1s ease-in-out infinite both; +} + +#frontImage { + margin-left: 45px; + margin-top: 55px; + width: 140px; + animation-name: scaling; + animation-duration: 1s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/css/main.css b/Discord Bot Maker/M0N7Y5/SimplyDark/css/main.css new file mode 100644 index 0000000..fded0d1 --- /dev/null +++ b/Discord Bot Maker/M0N7Y5/SimplyDark/css/main.css @@ -0,0 +1,449 @@ +p#settings-description { + color: #99AAB5; +} + +.ui.multiple.dropdown>.label { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + display: inline-block; + vertical-align: top; + white-space: normal; + font-size: 1em; + color: #ffffff; + padding: 0.35714286em 0.78571429em; + margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; + box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; +} + +body { + color: #ccc; + background-color: #36393f !important; + overflow: auto; + transition: 0.5s; + z-index: 20; +} + +html, +body { + background: #36393f !important; +} + +body.running { + background-color: #001427 !important; +} + +a:link { + color: #99b3ff; +} + +div.action-holder { + width: 240px; + float: left; + max-width: 240px; + padding-top: 10px; +} + +div.text{ + color: whitesmoke; +} + +.ui.selection.dropdown{ +background-color: #2f3136; +border-color: #53585f; + +} + +.ui.selection.dropdown:focus { + border-color: #a2a2a2; +} + +.ui.selection.active.dropdown .menu { + border-color: #a2a2a2; +} + +.ui.selection.dropdown:focus .menu { + border-color: #a2a2a2; +} + +.ui.selection.active.dropdown { + border-color: #a2a2a2; + +} + +div.menu.transition.visible{ + background-color: #2f3136; +} + +.ui.selection.visible.dropdown > .text:not(.default) { + color: whitesmoke; +} + +.ui.selection.dropdown:focus { + border-color: #a2a2a2; +} + +.ui.selection.active.dropdown:hover { + border-color: whitesmoke; +} + +.ui.dropdown.selected, .ui.dropdown .menu .selected.item { + color: whitesmoke; +} + +.ui.selection.dropdown .menu > .item { + border-top: 0px; + +} + +.ui.dropdown .menu{ + background: transparent; +} + +.ui.dropdown .menu > .item { + color: whitesmoke; +} + +i.dropdown.icon{ + color: whitesmoke; +} + +.ui.dropdown .menu > .item:hover { + background: #42464D; + color: whitesmoke; + z-index: 13; +} + +.ui.selection.active.dropdown:hover .menu { + box-shadow: none +} + +.ui.selection.active.dropdown .menu { + box-shadow: none +} + +.ui.selection.active.dropdown{ + box-shadow: none +} + +button.tiny:active { + animation: pulsate-bck 0.1s linear both; +} + +button.labeled:active{ + + animation: pulsate-bck 0.1s linear both; +} + + +/** + * ---------------------------------------- + * animation pulsate-bck + * ---------------------------------------- + */ + + @keyframes pulsate-bck { + 0% { + transform: scale(1); + } + 50% { + transform: scale(0.9); + } + 100% { + transform: scale(1); + } +} + +div.event-action-holder { + width: 240px; + float: left; + max-width: 240px; + padding-top: 10px; +} + +select#commands { + overflow: hidden; + height: 120px; +} + +select#actions { + overflow: hidden; + position: static; +} + +div.footer { + position: static; + float: right; + width: 100%; + height: 100%; + right: 0px; + bottom: 100px; + left: 220px; + /*top: 400px;*/ + text-align: left; +} + +div.infooter { + padding-top: 49px; +} + +div.einfooter { + padding-top: 77px; +} + +div.actionButtonDiv { + width: 90%; + padding: 10px 10px 10px 0px; + text-align: left; +} + +button.actionButtons { + width: 120px; + padding-right: 20px; + padding-left: 20px; + float: right; +} + +/* Setting */ +#Settings > div.ui.piled.segment{ + color: whitesmoke; + background: #36393F; + border: 2px solid #53585F; + transform: none !important; +} + +#Settings > div.ui.piled.segment > h4{ + color: #99AAB5; +} + + +div.tabs { + overflow: hidden; + border: 1px solid #ccc; + background-color: #f1f1f1; +} + +div.tabs button { + width: 33%; + background-color: inherit; + float: left; + border: none; + outline: none; + cursor: pointer; + padding: 12px 20px; + transition: 0.2s; +} + +div.tabs button:hover { + background-color: #ddd; +} + +div.tabs button.active { + background-color: #ccc; +} + +#emyactions,#event-actions{ + border: 1px solid #53585F; + border-radius: 4px; + background-color: #2F3136; +} + +div.myactions { + overflow-y: auto; + overflow-x: hidden; + border: 1px solid #53585F; + border-radius: 4px; + background-color: #2F3136; +} + +div.myactions button { + overflow: hidden; + width: 100%; + height: 20px; + text-align: left; + color: #e3e5e8; + background-color: #53585f; + float: left; + border: none; + outline: none; + cursor: pointer; + transition: 0.2s; +} + +div.myactions button:hover { + background-color: #777e88; +} + +div.myactions button.active { + background-color: #4676b9; +} + +div.emyactions { + overflow: auto; + overflow-x: hidden; + border: 1px solid #ccc; + background-color: #53585f; +} + +div.emyactions button { + overflow: hidden; + width: 100%; + height: 20px; + text-align: left; + color: #e3e5e8; + background-color: #53585f; + float: left; + border: none; + outline: none; + cursor: pointer; + transition: 0.2s; +} + +div.emyactions button:hover { + background-color: #777e88; +} + +div.emyactions button.active { + background-color: #4676b9; +} + +.page { + display: none; +} + +input { + color: whitesmoke; + background-color: #2F3136; + padding-bottom: 2px; +} + +input:focus{ + border-color: #a2a2a2; +} +textarea { + color: whitesmoke; + background-color: #2F3136; + border: 1px solid #53585F; + border-radius: 4px; + box-sizing: border-box; + display: block; + padding-left: 8px; +} + +textarea:focus { + outline-width: 0; +} + +textarea::selection { + background: #b8dbff; +} + +select { + color: #e3e5e8; + background-color: #53585f; +} + +button#a_tab { + background-color: #2F3136; + +} + +button#a_tab.active, +button#a_tab.active:hover { + background-color: #202225; +} + +button#a_tab:hover { + background-color: #42464D; +} + +input::selection { + background: #b8dbff; +} + +input:focus { + outline-width: 0; +} + +input#name, +input#alias-input, +input#ename, +input#etemp, +input#etemp2 { + border: 1px solid #53585F; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +input#name:focus, +input#alias-input:focus, +input#ename:focus, +input#etemp:focus, +input#etemp2:focus { + border-color: #a2a2a2; + +} + +input.settings { + font-family: monospace; + width: 100%; + border: 1px solid #53585F; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +input.round { + width: 100%; + border: 1px solid #53585F; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +select.round { + width: 100%; + border: 1px solid #53585F; + border-radius: 4px; + box-sizing: border-box; + display: block; + height: 28px; + padding-left: 8px; +} + +::-webkit-scrollbar { + width: 8px; + height: 8px; + background-color: #36393e; +} + +::-webkit-scrollbar-track { + background-color: #36393e; +} + +::-webkit-scrollbar-thumb { + background-color: #e0e1e2; +} + +#aliases, +#moduleManager { + height: 380px; + border-radius: 10px; + background-color: #36393e; + border: 2px solid black; +} + +.modalChild { + height: 240px; + margin-left: 70px; + margin-top: 15px; + overflow-y: scroll; +} \ No newline at end of file diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Back.png b/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Back.png new file mode 100644 index 0000000..17b40f0 Binary files /dev/null and b/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Back.png differ diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Front.png b/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Front.png new file mode 100644 index 0000000..5f8bf8a Binary files /dev/null and b/Discord Bot Maker/M0N7Y5/SimplyDark/img/About-Front.png differ diff --git a/Discord Bot Maker/M0N7Y5/SimplyDark/screen/screen.png b/Discord Bot Maker/M0N7Y5/SimplyDark/screen/screen.png new file mode 100644 index 0000000..26234d0 Binary files /dev/null and b/Discord Bot Maker/M0N7Y5/SimplyDark/screen/screen.png differ