38 wiersze
555 B
CSS
38 wiersze
555 B
CSS
/* t1.css - HTML */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: white;
|
|
color: black;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: "Times New Roman", serif;
|
|
text-align: left;
|
|
color: #333;
|
|
}
|
|
|
|
button {
|
|
padding: 5px 10px;
|
|
border: 1px solid #000;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
border: 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
td, th {
|
|
padding: 5px;
|
|
text-align: left;
|
|
}
|