Assert CSS
por 1935811
—
última modificação
24/04/2023 19h38
assert.css
— 1 KB
Conteúdo do arquivo
/* Definições de estilo para as tags HTML */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
h1 {
font-size: 32px;
margin-top: 20px;
margin-bottom: 10px;
}
p {
margin-bottom: 20px;
}
ul {
margin-bottom: 20px;
}
/* Estilos específicos para a seção do laboratório Assert */
.assert-section {
background-color: #f1f1f1;
padding: 20px;
}
.assert-section h2 {
font-size: 24px;
margin-top: 0;
margin-bottom: 20px;
}
.assert-section p {
margin-bottom: 10px;
}
.assert-section ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.assert-section li:before {
content: "\2022";
font-size: 22px;
margin-right: 10px;
color: #333;
}
.assert-section .highlight {
font-weight: bold;
}
.assert-section .contact-info {
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
background-color: #fff;
text-align: center;
}
.assert-section .contact-info p {
margin-bottom: 0;
}
.assert-section .contact-info a {
color: #333;
text-decoration: none;
font-weight: bold;
}
