You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
753 B

1 month ago
body {
font-family: "Arial", sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1, h2 {
text-align: center;
color: #333;
}
#tips-list {
margin-top: 20px;
}
.tip {
background: #e9f2ff;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
}
.tip h3 {
margin: 0 0 5px;
color: #007bff;
}
.tip p {
margin: 0 0 10px;
font-size: 14px;
color: #555;
}
.tip pre {
background: #f9f9f9;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 12px;
overflow-x: auto;
}