HTML/CSS | Задание 33

0

Не получается также как у автора. Вроде все также написал. И ещё у меня на 66 строчке text-decoration выделяется другим цветом, нежели остальные свойства, хотя на 30 строчке всё нормально.

style.css

.main, .logo, .menubar, .site_content, .footer {
	margin-left: auto;
	margin-right: auto;
}

.logo {
	width: 880px;
	padding-bottom: 40px
}

.logo h1, .logo h2 {
	font: normal 300% 'century gothic', arial, sans-serif;
	margin: 0 0 0 9px;

}

.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
	padding: 22px, 0 0 0 ;
	color: #fff;
	letter-spacing: 0.1em;
	text-decoration: none; 

}

.logo_text h2 {
	font-size: 1.3em;
	padding: 4px 0 0 6px;
	color: #C0C0C0;
}

.logo_text h1 {
	margin: 15px 0 0 0;
}

.menubar {
	width: 900px;
	height: 46px;
}

ul.menu {
	float: right;
}

ul.menu li {
	float: left;
	padding: 0 0 0 9px;
	list-style: none;
	margin: 1px 2px 0 0;
}

ul.menu li a {
	font: normal 100% 'trebuchet ms', sans-serif;
	display: block;
	height: 20px;
	padding: 6px;
	color: #fff
	text-decoration: none;
}

ul.menu li.selected a {
	color: #aeb002;

}

ul.menu li a:hover {
	color: #e4ec04;
}

index.html

Получается вот так:

file:///D:/Web%20programing/%D0%A1%D0%BE%D0%B2%D0%B5%D1%82%D1%81%D0%BA%D0%B8%D0%B5%20%D1%84%D0%B8%D0%BB%D1%8C%D0%BC%D1%8B(%D1%81%D0%B0%D0%B9%D1%82)/index.html#
html
css

1 ответов

3

У вас точки с запятой нехватает после color: #fff

ul.menu li a {
	font: normal 100% 'trebuchet ms', sans-serif;
	display: block;
	height: 20px;
	padding: 6px;
	color: #fff
	text-decoration: none;
}
Sign up or Log in to write an answer