Lid |
|
body{
background:url(../img/background.gif);
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
}
a{
text-decoration:none;
font-style:none;
color:#2850a1;
}
#loginimage{
position:relative;
float:left;
background-color:none;
background: url(../img/loginimg.png) no-repeat;
width:200px;
height:150px;
}
#logincontend{
padding:5px 15px 5px 20px;
}
#container{
background-color:#dfe1e5;/*414244*/
position:absolute;
left:50%;
margin-left:-400px;
width:800px;
height:580px;
}
#header{
width:800px;
height:100px;
background:url(../img/header1.jpg) no-repeat;
}
#info{
border-bottom: 1px solid black;
color:#2850a1;
}
#menu{
background: url(../img/menuback.png) no-repeat;
width:140px;
height:200px;
float:left;
margin:20px 0px 0px 10px;
padding:10px 0px 0px 10px;
font-size:15px;
}
img{
border-style:none;
}
ul {
list-style-type: none;
margin: 0px;
padding: 0px
}
#main{
position:absolute;
display:inline;
border: 1px black solid;
width:550px;
height:430px;
float: right;
margin-top:20px;
font-size:12px;
padding-left:75px;
}
#main p{
font-size:14px;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-align:center;
}
#bottom{
position:absolute;
width:800px;
height:20px;
text-align:center;
font-weight: bold;
left:50%;
margin-left:-400px;
margin-top:585px;
}
input.userinfo{
width:100px;
margin:5px;
border:1px solid black;
}
input.loginknoppen{
width:60px;
margin:5px 10px 10px 5px;
}
body{ background:url(../img/background.gif); font-family: Verdana, Arial, Helvetica, sans-serif; font-size:12px; } a{ text-decoration:none; font-style:none; color:#2850a1; } #loginimage{ position:relative; float:left; background-color:none; background: url(../img/loginimg.png) no-repeat; width:200px; height:150px; } #logincontend{ padding:5px 15px 5px 20px; } #container{ background-color:#dfe1e5;/*414244*/ position:absolute; left:50%; margin-left:-400px; width:800px; height:580px; } #header{ width:800px; height:100px; background:url(../img/header1.jpg) no-repeat; } #info{ border-bottom: 1px solid black; color:#2850a1; } #menu{ background: url(../img/menuback.png) no-repeat; width:140px; height:200px; float:left; margin:20px 0px 0px 10px; padding:10px 0px 0px 10px; font-size:15px; } img{ border-style:none; } ul { list-style-type: none; margin: 0px; padding: 0px } #main{ position:absolute; display:inline; border: 1px black solid; width:550px; height:430px; float: right; margin-top:20px; font-size:12px; padding-left:75px; } #main p{ font-size:14px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:center; } #bottom{ position:absolute; width:800px; height:20px; text-align:center; font-weight: bold; left:50%; margin-left:-400px; margin-top:585px; } input.userinfo{ width:100px; margin:5px; border:1px solid black; } input.loginknoppen{ width:60px; margin:5px 10px 10px 5px; }
de css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="css/mainstyle.css"/>
<title>The code master</title>
</head>
<body>
<div id="loginimage">
<div id="logincontend"><?php include("login.php");?> </div>
</div>
<div id="container">
<div id="header"></div>
<div id="info"><?php include('timenow.php');?></div>
<div id="menu">
<?php include("menu.php");?>
</div>
<div id="main">
<?php include("menuswitch.php");?>
</div>
</div>
<div id="bottom">Copyright 2010</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <link rel="stylesheet" type="text/css" href="css/mainstyle.css"/> <div id="logincontend"><?php include("login.php");?> </div> <div id="info"><?php include('timenow.php');?></div> <?php include("menu.php");?> <?php include("menuswitch.php");?> <div id="bottom">Copyright 2010 </div>
de html |