51 lines
764 B
CSS
51 lines
764 B
CSS
/* t2.css - HTML+ */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f55555;
|
|
color: #333333;
|
|
margin: 10;
|
|
padding: 20px;
|
|
}
|
|
|
|
output {
|
|
color: aqua;
|
|
font-size: 75px;
|
|
border:dotted #00ff62;
|
|
border-radius: 14px;
|
|
}
|
|
|
|
button {
|
|
padding: 8px 15px;
|
|
border: 1px solid #ddd;
|
|
background-color: #0206ff;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
color: #ddd;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #bbb;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
th {
|
|
font-family:Impact;
|
|
color: rgb(77, 230, 143);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 15px solid #e99d0f;
|
|
}
|
|
|
|
td, th {
|
|
padding: 8px;
|
|
text-align: left;
|
|
border: 8px solid #fc04fc;
|
|
}
|