├── LICENSE ├── README.md ├── css └── style.css ├── images └── botimg.png ├── index.html └── komutlar.html /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 CodAre 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # discord-bot-sitesi 2 | 3 | Noncentilyon için can sıkıntısından yaptığım öyle bir site 10 ya da 20 dkda falan yaptım kullanın :D 4 | 5 |  6 |  7 | 8 | # Raksix tarafından yapılmıştır 9 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #333; 3 | } 4 | 5 | 6 | .bosluk{ 7 | height: 200px; 8 | } 9 | .bosluk2{ 10 | height: 75px; 11 | } 12 | 13 | .bot-resim{ 14 | border-radius: 100%; 15 | width: 400px; 16 | height: 400px; 17 | text-align: center; 18 | padding: 10px; 19 | } 20 | .bot-resim-arka{ 21 | border-radius: 100%; 22 | width: 400px; 23 | height: 400px; 24 | background-color: #393939; 25 | } 26 | 27 | #dis_bolme { 28 | width: 500px; 29 | height:250px; 30 | } 31 | 32 | 33 | .ic_bolme{ 34 | float:left; 35 | } 36 | 37 | 38 | .atlama{ 39 | padding: 60px; 40 | max-width: 600px; 41 | } 42 | 43 | .footer { 44 | position: fixed; 45 | left: 0; 46 | bottom: 0; 47 | width: 100%; 48 | color: white; 49 | text-align: center; 50 | font-size: 30px; 51 | } 52 | 53 | 54 | 55 | /*Scroll bar kısmı*/ 56 | ::-webkit-scrollbar { 57 | width: 2px; 58 | } 59 | 60 | 61 | ::-webkit-scrollbar-track { 62 | box-shadow: inset 0 0 5px transparent; 63 | border-radius: 10px; 64 | } 65 | 66 | 67 | ::-webkit-scrollbar-thumb { 68 | background: grey; 69 | border-radius: 100px; 70 | } 71 | 72 | 73 | ::-webkit-scrollbar-thumb:hover { 74 | background: #b30000; 75 | } -------------------------------------------------------------------------------- /images/botimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAre-Development/discord-bot-sitesi/e117be19471f2e6630826dbd7e1509a8909f2850/images/botimg.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |