-
Notifications
You must be signed in to change notification settings - Fork 156
/
styleAbout.css
65 lines (65 loc) · 1.03 KB
/
styleAbout.css
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
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 20px;
}
h1 {
color: #2c3e50;
text-align: center;
}
h2 {
color: #27ae60;
}
.step {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 20px 0;
padding: 20px;
}
.step-header {
display: flex;
align-items: center;
}
.step-number {
background-color: #27ae60;
color: #fff;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
font-size: 20px;
}
.step-content {
margin-top: 10px;
}
.step-content p {
margin: 10px 0;
}
.step-content ul {
margin: 10px 0;
padding-left: 20px;
}
.step-content li {
margin: 5px 0;
}
.highlight {
background-color: #ecf0f1;
border-left: 4px solid #27ae60;
padding: 10px;
margin: 10px 0;
}
.problem, .solution {
background-color: #fdf2e9;
border-left: 4px solid #e67e22;
padding: 10px;
margin: 10px 0;
}
.solution {
border-color: #3498db;
}