Показать сообщение отдельно
  #12 (permalink)  
Старый 23.11.2012, 17:07
Аватар для Aetae
Тлен
Отправить личное сообщение для Aetae Посмотреть профиль Найти все сообщения от Aetae
 
Регистрация: 02.01.2010
Сообщений: 6,584

Вот сделал табличкой, ибо лень возиться. Если охота, то можно всё переделать с display:table\inline-block - это уж как вам нравится.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" content="no-cache">
<style>
*{margin:0;padding:0;}
html
    {
        width: 100%;
        height: 100%;
        font-family: Arial, Helvetica, sans-serif;
    }
     
body
    {
        background: #1e5799; /* Old browsers */
        background: -moz-linear-gradient(top,  #1e5799 0%, #7db9e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* IE10+ */
        background: linear-gradient(to bottom,  #1e5799 0%,#7db9e8 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
        width: 100%;
        height: 100%;
        margin: 0;
    }
     
#wrapper
    {
        top: -1px;
        margin:0 auto;
        width:800px;
        margin: 0 auto;
        border-radius: 100px 40px / 40px 100px;
        position: relative;
    }
     
.control_menu
    {
        width: 100%;
		font-size: 20px;
        height: 20px;
		margin:0;
		padding:0;
		border-spacing:0;
	}
     
.control_menu_button
    {
		vertical-align:top;
    }
.control_menu_button a
    {
		display:block;
        color:white;
        border: 10px white solid;
        border-top: none;
        border-radius:  0 0 20px 20px;
        padding: 0 10px;
		margin-bottom:-10px;
		margin-left:-5px;
		margin-right:-5px;
    }
.control_menu_spacer
    {
        background-color:white;
		width:50%;
	}
.control_menu_button a:hover
    {
        color: orange;
        cursor:pointer;
    }
     
#content
    {
        background-color:white;
        text-align: center;
        padding: 20px;
    }
</style>
</head>
<body>
 
    <div id="wrapper">
			<table class="control_menu">
				<tr>
					<td class="control_menu_spacer"></td>
					<td class="control_menu_button"><a href="#">Авторизация</a></td>
					<td class="control_menu_button"><a href="#">Смотреть</a></td>
					<td class="control_menu_button"><a href="#">Управлять</a></td>
					<td class="control_menu_button"><a href="#">Выход</a></td>
					<td class="control_menu_spacer"></td>
				</tr>
			</table>
            <div id="content">
                <img src="../img/temp.gif">
            </div>
    </div>
</body>
</html>
__________________
29375, 35
Ответить с цитированием