48 lines
800 B
CSS
48 lines
800 B
CSS
/* t3.css - HTML 2.0 */
|
|
body {
|
|
font-family: 'Segoe UI', sans-serif;
|
|
background-color: #f0f0f0;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 30px;
|
|
background-image: url(codevert.jpg);
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Arial', sans-serif;
|
|
text-align: left;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
border: none;
|
|
background-color: #3498db;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #2980b9;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
td, th {
|
|
padding: 10px;
|
|
text-align: left;
|
|
border: 1px solid #ddd;
|
|
}
|