-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (90 loc) · 1.39 KB
/
styles.css
File metadata and controls
92 lines (90 loc) · 1.39 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #2c3e50;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
h2 {
color: #2980b9;
margin-top: 30px;
}
.example {
background-color: #f8f9fa;
border-left: 4px solid #3498db;
padding: 15px;
margin: 20px 0;
}
table {
border-collapse: collapse;
width: 100%;
margin: 20px 0;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f4f6f8;
}
tr:hover {
background-color: #f0f0f0;
}
.concept {
text-align: left;
}
.total-row {
font-weight: bold;
background-color: #e9e9e9;
}
.tip {
background-color: #e8f4f8;
border-radius: 4px;
padding: 15px;
margin: 20px 0;
}
.tip::before {
content: "💡 Tip: ";
font-weight: bold;
}
.tip p {
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-all;
}
.warning {
background-color: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin: 20px 0;
}
.warning::before {
content: "⚠️ Importante: ";
font-weight: bold;
}
footer {
text-align: center;
color: #666;
font-size: 0.9em;
margin-top: 20px;
padding: 10px 0;
background-color: #f4f4f4;
}
footer a {
color: #666;
text-decoration: none;
}
footer a:hover {
color: #333;
}
img {
max-width: 100%;
height: auto;
}