43 lines
665 B
CSS
43 lines
665 B
CSS
/* t3.css - HTML 2.0 */
|
|
body {
|
|
font-family: 'Segoe UI', sans-serif;
|
|
background-color: #f0f0f0;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 30px;
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
border: none;
|
|
background-color: #fc3e04;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #ff9900;
|
|
}
|
|
|
|
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;
|
|
}
|