52 lines
880 B
CSS
52 lines
880 B
CSS
/* t4.css - HTML 3.2 */
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #ecf0f1;
|
|
color: #ddd;
|
|
margin: 0;
|
|
padding: 40px;
|
|
background-image: url(matrix.gif), url(codevert.jpg);
|
|
}
|
|
|
|
button {
|
|
padding: 12px 25px;
|
|
border: none;
|
|
background-color: #000000;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 20px;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #33ff00;
|
|
}
|
|
|
|
output {
|
|
font-size: 50px;
|
|
color: #ddd;
|
|
background-color: #000000;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 15px;
|
|
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
th {
|
|
padding: 12px;
|
|
text-align: left;
|
|
border: 1px solid #ccc;
|
|
color: #ddd;
|
|
font-size: 20px;
|
|
}
|