blob: 1faafe41186ad7872cfb023957c4ab7d37a07365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
body {
font-family: sans-serif;
margin: 20px;
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
h1,
h2,
h3 {
color: #2c3e50;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 10px;
margin-top: 30px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #ecf0f1;
margin-bottom: 8px;
padding: 10px 15px;
border-radius: 8px;
display: flex;
align-items: center;
}
li:nth-child(odd) {
background-color: #e0e0e0;
}
.highlight {
font-weight: bold;
color: #2980b9;
}
.code-block {
background-color: #2c3e50;
color: #ecf0f1;
padding: 5px;
border-radius: 8px;
font-family: monospace;
overflow-x: auto;
margin-top: 15px;
}
.footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
color: #7f8c8d;
font-size: 0.9em;
}
|