Cirlz Style Script

A script that can change the styles in cirlzgame.tk

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Cirlz Style Script
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  A script that can change the styles in cirlzgame.tk
// @author       FireTruck
// @match        http://cirlzgame.tk/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=cirlzgame.tk
// @grant        none
// ==/UserScript==

var styles = `

#chat_textbox:hover {
    transition: all .5s ease-in-out;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    background: #212121;
    border: 3px solid #AAFF00;
    border-radius: 5px;
    outline: none;
    color: #ffffff;
    height: 30px;
    text-indent: 12px;
    left: 10px;
    width: 300px;
    font-family: "Ubuntu";
}

#chat_textbox:focus {
    transition: all .5s ease-in-out;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    background: #212121;
    border: 3px solid #AAFF00;
    border-radius: 5px;
    outline: none;
    color: #ffffff;
    height: 30px;
    text-indent: 12px;
    left: 10px;
    width: 300px;
    font-family: "Ubuntu";
}

#chat_textbox {
    transition: all .5s ease-in-out;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    background: #212121;
    border: 3px solid #333333;
    border-radius: 5px;
    outline: none;
    color: #ffffff;
    height: 30px;
    text-indent: 12px;
    left: 10px;
    width: 300px;
    font-family: "Ubuntu";
}

#nick:hover {
    transition: all .5s ease-in-out;
    width: 105%;
    height: 37px;
    background: transparent;
    color: #AAFF00;
    border: 2px solid #AAFF00;
    transform: translate(-2%, -150%);
    font-family: 'Ubuntu', sans-serif;
}

#nick:focus {
    transition: all .5s ease-in-out;
    width: 105%;
    height: 37px;
    background: transparent;
    color: #AAFF00;
    border: 2px solid #AAFF00;
    transform: translate(-2%, -150%);
    font-family: 'Ubuntu', sans-serif;
}

#nick {
    transition: all .5s ease-in-out;
    width: 105%;
    height: 37px;
    background: transparent;
    color: white;
    border: 2px solid #AAFF00;
    transform: translate(-2%, -150%);
    font-family: 'Ubuntu', sans-serif;
}

#gigasplit:hover {
    transition: all .5s ease-in-out;
    width: 109%;
    margin-bottom: 10px;
    height: 40px;
    background: #202020;
    border: 2px solid #AAFF00;;
    color: #AAFF00;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-4%, 1150%);
    font-size: 16px;
    font-weight: bold;
}

#gigasplit {
    transition: all .5s ease-in-out;
    width: 109%;
    margin-bottom: 10px;
    height: 40px;
    background: #202020;
    border: 2px solid #AAFF00;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-4%, 1150%);
    font-size: 16px;
    font-weight: bold;
}

#settings-btn {
    transition: all .5s ease-in-out;
    background: #202020;
    border: 2px solid #AAFF00;
    border-radius: 5px;
    width: 51%;
    height: 36px;
    float: right;
    top: 0;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-100%, -220%);
}

#settings-btn:hover {
    transition: all .5s ease-in-out;
    background: #202020;
    border: 2px solid #AAFF00;
    border-radius: 5px;
    color: #AAFF00;
    width: 51%;
    height: 36px;
    float: right;
    top: 0;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-100%, -220%);
}

#play-btn {
    transition: all .5s ease-in-out;
    width: 105%;
    margin-bottom: 10px;
    background: #202020;
    border: 2px solid #AAFF00;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-2%, 120%);
    font-size: 16px;
    font-weight: bold;
}

#play-btn:hover {
    transition: all .5s ease-in-out;
    width: 105%;
    margin-bottom: 10px;
    background: #202020;
    border: 2px solid #AAFF00;
    border-radius: 5px;
    color: #AAFF00;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(-2%, 120%);
    font-size: 16px;
    font-weight: bold;
}

#spectate-btn {
    transition: all .5s ease-in-out;
    background: #202020;
    border: 2px solid #AAFF00;
    width: 52%;
    border-radius: 5px;
    float: right;
    top: 0;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(5%, -120%);
}

#spectate-btn:hover {
    transition: all .5s ease-in-out;
    background: #202020;
    border: 2px solid #AAFF00;
    width: 52%;
    border-radius: 5px;
    color: #AAFF00;
    float: right;
    top: 0;
    font-family: 'Ubuntu', sans-serif;
    transform: translate(5%, -120%);
}

#helloDialog {
    width: 400px;
    background-color: #fff;
    margin: 10px auto;
    border-radius: 5px;
    padding: 5px 15px 5px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #AAFF00;
    background: #212121;
}

#ad {
    border: 2px solid #AAFF00;
    height: 260px;
    width: 90%;
}

`

var styleSheet = document.createElement("style");
styleSheet.innerText = styles;
document.head.appendChild(styleSheet);