42 lines
639 B
CSS
42 lines
639 B
CSS
/* t6.css - XHTML 4.01 */
|
|
body {
|
|
font-family: 'Verdana', sans-serif;
|
|
background-color: #ffffff;
|
|
color: #2c3e50;
|
|
margin: 0;
|
|
padding: 60px;
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
padding: 18px 35px;
|
|
border: none;
|
|
background-color: #e74c3c;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #fda500;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 5px;
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td, th {
|
|
padding: 18px;
|
|
text-align: left;
|
|
border: 1px solid #ddd;
|
|
}
|