Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Releases
[Mockup] Habbo Desktop's Base UI
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Jerry" data-source="post: 426556" data-attributes="member: 35321"><p>Hi,</p><p></p><p>I coded a UI (from Jeff's Habbo UI mockups) in HTML and CSS a long time ago, but I don't have any use of it anymore so I am going to release it.</p><p></p><p><strong>Screenshot</strong>:</p><p><img src="https://image.prntscr.com/image/e9ca1d8b86da4c79a63c434c9c93d4b0.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p><img src="https://cdn.discordapp.com/attachments/183594993967955968/402721622286401536/unknown.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><p><strong>CSS</strong>:</p><p>[CODE]#user-interface {</p><p> position: absolute;</p><p> left: 305px;</p><p> bottom: 30px;</p><p> height: 50px;</p><p> padding: 4px 0;</p><p> margin-left: 4px;</p><p>}</p><p></p><p>#user-interface .user-interface-btn {</p><p> color: #FFF;</p><p> background-color: #886E9E;</p><p> width: 48px;</p><p> height: 48px;</p><p> border-radius: 32px;</p><p> box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.5), inset 2px -2px 0 rgba(255, 255, 255, 0.5), inset -2px 2px 0 rgba(255, 255, 255, 0.5), inset -2px -2px 0 rgba(255, 255, 255, 0.5);</p><p> font-size: 25px;</p><p> line-height: 48px;</p><p> text-align: center;</p><p> text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);</p><p> display: inline-block;</p><p> position: relative;</p><p> bottom: -10px;</p><p> right: -10px;</p><p>}</p><p></p><p>#user-interface .user-interface-btn-small {</p><p> color: #FFF;</p><p> background-color: #446688;</p><p> width: 36px;</p><p> height: 36px;</p><p> border-radius: 32px;</p><p> box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.5), inset 2px -2px 0 rgba(255, 255, 255, 0.5), inset -2px 2px 0 rgba(255, 255, 255, 0.5), inset -2px -2px 0 rgba(255, 255, 255, 0.5);</p><p> font-size: 16px;</p><p> line-height: 36px;</p><p> text-align: center;</p><p> text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);</p><p> display: inline-block;</p><p> position: relative;</p><p> bottom: -10px;</p><p> right: -10px;</p><p>}</p><p></p><p>#user-interface #lol1 {</p><p> left: -85px;</p><p> bottom: 5px;</p><p>}</p><p></p><p>#user-interface #lol2 {</p><p> left: -117px;</p><p> bottom: 45px;</p><p>}</p><p></p><p>#user-interface #lol3 {</p><p> left: -117px;</p><p> bottom: 55px;</p><p> background-color: #27787B;</p><p>}</p><p></p><p>#user-interface #lol4 {</p><p> left: -117px;</p><p> bottom: 45px;</p><p>}</p><p></p><p>#user-interface #lol5 {</p><p> left: -149px;</p><p> bottom: 5px;</p><p>}</p><p></p><p>#user-interface #big-1 {</p><p> left: -125px;</p><p> bottom: 5px;</p><p>}</p><p></p><p>#user-interface #big-2 {</p><p> left: -120px;</p><p> bottom: 5px;</p><p> background-color: #565082;</p><p>}</p><p></p><p>#user-interface #big-phone {</p><p> left: 580px;</p><p> bottom: 5px;</p><p> background-color: #C0174E;</p><p>}</p><p></p><p>#user-interface #big-help {</p><p> left: 575px;</p><p> bottom: 5px;</p><p> background-color: #C0174E;</p><p>}</p><p></p><p>#user-interface .user-interface-btn:active, #user-interface .user-interface-btn-small:active {</p><p> opacity: 0.6;</p><p>}[/CODE]</p><p></p><p><strong>HTML</strong>:</p><p>[HTML]<div id="user-interface"></p><p> <div class="user-interface-btn" style="background-image: url(https://game.holorp.com/habbo-imaging/avatarimage?figure=ch-3077-110.fa-327…82.lg-270-110.hr-115-61.-3163-1407&gesture=srp&head_direction=2&headonly=1);background-position-x: -3px;background-position-y: -6px;"></div></p><p> <div class="user-interface-btn-small fa fa-trophy" id="lol1"></div></p><p> <div class="user-interface-btn-small fa fa-building" id="lol2"></div></p><p> <div class="user-interface-btn-small fa fa-black-tie" id="lol3"></div></p><p> <div class="user-interface-btn-small fa fa-tasks" id="lol4"></div></p><p> <div class="user-interface-btn-small fa fa-dot-circle-o" id="lol5"></div></p><p> <div class="user-interface-btn fa fa-shopping-cart" id="big-1"></div></p><p> <div class="user-interface-btn fa fa-shopping-basket" id="big-2"></div></p><p> <div class="user-interface-btn fa fa-question" id="big-help"></div></p><p> <div class="user-interface-btn fa fa-mobile" id="big-phone"></div></p><p></div>[/HTML]</p><p></p><p><strong>Note</strong></p><p>This may not be aligned correctly on bigger screen resolutions.</p><p></p><p>EDIT: I used FontAwesome for the icons, so you need to link the css for it to your HTML page for the icons to load.</p><p></p><p>The concept of the UI goes to Jeff Stehney.</p></blockquote><p></p>
[QUOTE="Jerry, post: 426556, member: 35321"] Hi, I coded a UI (from Jeff's Habbo UI mockups) in HTML and CSS a long time ago, but I don't have any use of it anymore so I am going to release it. [B]Screenshot[/B]: [IMG]https://image.prntscr.com/image/e9ca1d8b86da4c79a63c434c9c93d4b0.png[/IMG] [IMG]https://cdn.discordapp.com/attachments/183594993967955968/402721622286401536/unknown.png[/IMG] [B]CSS[/B]: [CODE]#user-interface { position: absolute; left: 305px; bottom: 30px; height: 50px; padding: 4px 0; margin-left: 4px; } #user-interface .user-interface-btn { color: #FFF; background-color: #886E9E; width: 48px; height: 48px; border-radius: 32px; box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.5), inset 2px -2px 0 rgba(255, 255, 255, 0.5), inset -2px 2px 0 rgba(255, 255, 255, 0.5), inset -2px -2px 0 rgba(255, 255, 255, 0.5); font-size: 25px; line-height: 48px; text-align: center; text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7); display: inline-block; position: relative; bottom: -10px; right: -10px; } #user-interface .user-interface-btn-small { color: #FFF; background-color: #446688; width: 36px; height: 36px; border-radius: 32px; box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.5), inset 2px -2px 0 rgba(255, 255, 255, 0.5), inset -2px 2px 0 rgba(255, 255, 255, 0.5), inset -2px -2px 0 rgba(255, 255, 255, 0.5); font-size: 16px; line-height: 36px; text-align: center; text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7); display: inline-block; position: relative; bottom: -10px; right: -10px; } #user-interface #lol1 { left: -85px; bottom: 5px; } #user-interface #lol2 { left: -117px; bottom: 45px; } #user-interface #lol3 { left: -117px; bottom: 55px; background-color: #27787B; } #user-interface #lol4 { left: -117px; bottom: 45px; } #user-interface #lol5 { left: -149px; bottom: 5px; } #user-interface #big-1 { left: -125px; bottom: 5px; } #user-interface #big-2 { left: -120px; bottom: 5px; background-color: #565082; } #user-interface #big-phone { left: 580px; bottom: 5px; background-color: #C0174E; } #user-interface #big-help { left: 575px; bottom: 5px; background-color: #C0174E; } #user-interface .user-interface-btn:active, #user-interface .user-interface-btn-small:active { opacity: 0.6; }[/CODE] [B]HTML[/B]: [HTML]<div id="user-interface"> <div class="user-interface-btn" style="background-image: url(https://game.holorp.com/habbo-imaging/avatarimage?figure=ch-3077-110.fa-327…82.lg-270-110.hr-115-61.-3163-1407&gesture=srp&head_direction=2&headonly=1);background-position-x: -3px;background-position-y: -6px;"></div> <div class="user-interface-btn-small fa fa-trophy" id="lol1"></div> <div class="user-interface-btn-small fa fa-building" id="lol2"></div> <div class="user-interface-btn-small fa fa-black-tie" id="lol3"></div> <div class="user-interface-btn-small fa fa-tasks" id="lol4"></div> <div class="user-interface-btn-small fa fa-dot-circle-o" id="lol5"></div> <div class="user-interface-btn fa fa-shopping-cart" id="big-1"></div> <div class="user-interface-btn fa fa-shopping-basket" id="big-2"></div> <div class="user-interface-btn fa fa-question" id="big-help"></div> <div class="user-interface-btn fa fa-mobile" id="big-phone"></div> </div>[/HTML] [B]Note[/B] This may not be aligned correctly on bigger screen resolutions. EDIT: I used FontAwesome for the icons, so you need to link the css for it to your HTML page for the icons to load. The concept of the UI goes to Jeff Stehney. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
[Mockup] Habbo Desktop's Base UI
Top