From 7d6cf58ede59d93b3098b8295c9da4a4f5c4c6dd Mon Sep 17 00:00:00 2001 From: Deco artist <85200242+DecoArtist@users.noreply.github.com> Date: Tue, 5 Apr 2022 16:39:13 -0300 Subject: [PATCH] Update browser.css --- assets/css/browser.css | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/assets/css/browser.css b/assets/css/browser.css index 8a0ebf1..e60cac6 100644 --- a/assets/css/browser.css +++ b/assets/css/browser.css @@ -7,6 +7,35 @@ body { background: #000; } +/* is kinda dumb but... +i recreated the gd button (menu) in css + +here is the code: */ + + .YourClass + { + /* text-transform: uppercase; <---- optional*/ + height: 138px; /* height (u can change, bruh ._.)*/ + width: 138px; /* width (u can change, bruh ._.)*/ + border-radius: 5px; + background-color: #87da23; /*main color*/ + box-shadow: 10px 10px 0px rgb(62 62 62 / 50%); + background-image: linear-gradient(#c5fa59 10%, #c5fa59a3 15%, #4caa11 91%,#376813 0%); /*extra colors*/ + cursor: pointer; + margin-bottom: 8px; + border: 3.5px solid black; + outline: 2.5px solid white; + + /* TEXT INFO: */ + color: rgb(255, 255, 255); + font-family: 'Pusab, Arial'; + font-weight: normal; + font-size: 5vh; + -webkit-text-stroke-width: 0.2vh; + -webkit-text-stroke-color: black; + text-shadow: 0.35vh 0.35vh 0vh rgb(0 0 0 / 30%) +} + .levelBG { background-image: linear-gradient(#0065FD, #002E73); height: 100vh; @@ -1346,4 +1375,4 @@ cp { color: #ff00ff } animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; } -} \ No newline at end of file +}