-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (62 loc) · 1.11 KB
/
style.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
66
67
68
69
70
71
72
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #0779e4 4px solid;
}
header h1 {
text-align: center;
margin: 0;
font-size: 36px;
}
.main-content {
padding: 20px;
margin-top: 20px;
background-color: #e8eff3;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.main-content img {
display: block;
margin: 0 auto;
width: 400px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.main-content h2 {
text-align: center;
margin-top: 20px;
color: #0e75b9;
}
.main-content p {
text-align: justify;
margin: 20px 0;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
margin-top: 30px;
font-size: 18px;
}
footer a {
color: #0779e4;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}