Leader
github.com/habbo-hotel
- Aug 24, 2012
- 1,030
- 307
Thanks to eckostylez for the free hosting!
Thanks to Legion for an idea of the header color
And Thanks to my bipolarness to make the boxes transparent
-----------------------------------------------
I coded all of this on my own excluding the buttons.
I decided to change the way the content boxes looked because I had a pyscho spree and changed the entire css over to a newer one. I will release my old css, but it isnt very good lol.
Please do not take any of my work without asking <3 and always leave copyrights
Old CSS And HTML
Some of the methods I used on the old css are not very clean ones lol
Rate n slate
Thanks to Legion for an idea of the header color
And Thanks to my bipolarness to make the boxes transparent
-----------------------------------------------
I coded all of this on my own excluding the buttons.
I decided to change the way the content boxes looked because I had a pyscho spree and changed the entire css over to a newer one. I will release my old css, but it isnt very good lol.
Please do not take any of my work without asking <3 and always leave copyrights
Old CSS And HTML
HTML:
<Html>
<Title>Portal</Title>
<link rel="stylesheet" type="text/css" href="Main.css">
<link rel="stylesheet" type="text/css" href="Navi.css">
<Link rel="stylesheet" type="text/css" href="Box.css">
<Div Id="Header">
<br>
<center> <img src='http://i.sharefa.st/eqVtld0Ujwq0.png'>
</div>
<a href="#" class="classname">Home</a>
<a href="/sky" class="classname">Sky Series</a>
<a href="/light" class="classname">Light Series</a>
<Div Id="Center">
<br><br><br><br>
<Div Class="Box1T">
<center> What Can I Find Here? </center>
</div>
<Div Class="Box1C">
Here you can find all my projects that I released to the public, and you can also view some of my unfinished projects, and finished projects live!
There will also be a comment system so that way people can see reviews about the product before downloading.
</Div>
<Div Id="Right">
<Div Class="BoxRT">
<center> About Me </center>
</Div>
<Div Class="BoxC">
I mainly play on Habplus hotel, and my username is Redlyn. I usually code for things like Habbo since I been with it for 5 years, but sometimes I code off habbo for the fun of it and if its requested. I just started out coding so I may not be the best but I am improving everyday. If you have a comment or anything please visit my guestbook
</div>
</Html>
Code:
body{
background-image:url('http://layerlovers.com/wp-content/uploads/2011/03/yikes-stripes_preview.jpg');
margin: 0;
padding: 0;
}
#Left{
float: left;
}
#Right{
margin-left:auto;
margin-right:1%;
width:20%;
}
#Center{
margin-left:auto;
margin-right:auto;
width:87%;
}
#Header{
background-color: #B7DD1D;
width: 100%;
height: 21%;
border-bottom: 5px solid black;
}
.Box1T
{
position: absolute;
top: 32%;
color: white;
font-weight: bold;
background-color: #C5D112;
width: 27%;
height: auto;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.Box1C
{
background-color: white;
width: 31%;
height: auto;
padding-top: 5px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
.BoxRT
{
position: absolute;
right: 17%;
top: 32%;
color: white;
text-align; center;
font-weight: bold;
background-color: #18B4C4;
width: 24%;
height: auto;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.BoxC
{
position: absolute;
right: 17%;
top: 34%;
background-color: white;
width: 24%;
height: auto;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
Rate n slate