Помогите пожалуйста выполнить д/з правильно?

0

Я кажется в CSS намудрила. Рамки не становятся яркими как в оригинале и кнопка "отправить" не закрашивается в синий

.reviews {
margin-bottom: 4%;
font-size: 0.9em;
}

.reviews .review_name {
background-color: #7268ad;
color: white;
padding: 1%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.reviews .review_text {
padding-top: 2%;
padding-bottom: 2%;
padding-left: 2%;
}

.send {
margin-bottom: 4%;
}

.send input [type="text"] textarea {
border:solid 1px#c3c3c3;
margin-bottom: 2%;
}

.send input [type="text"] {
width: 98%;
}

.send textarea {
width: 624px;
height:200px;
}

.send input [type="submit"] {
background-color: #7268ad;
padding: 3%;
color: white;
border-radius: 5px;
}

.send_contact {
margin-bottom: 4%;
}

.send_contact input [type="text"] textarea {
border:solid 1px#c3c3c3;
margin-bottom: 2%;
}

.send_contact [type="text"] {
width: 98%;
}

.send_contact textarea {
width: 624px;
height:200px;
}

.send_contact [type="submit"] {
background-color: #7268ad;
padding: 3%;
color: white;
border-radius: 5px;
border:solid 1px#c3c3c3;
font-size: 16px;

}

.footer {
width: 100%;
height: 100px;
padding:28px 0 5px 0;
text-align: center;
background-color: darkslateblue;
color: #a8aa94;
margin-left: 0px;
margin-right: 0px;
min-width: 900px;

html
css

2 ответов

0

Спасибо большое!

1

Пробелов после input не должно быть. Везде в вашем css стоят пробелы после input, их нужно убрать:

input [type="submit"]
Sign up or Log in to write an answer