-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (82 loc) · 1.31 KB
/
styles.css
File metadata and controls
98 lines (82 loc) · 1.31 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
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background: #f4f4f9;
color: #333;
line-height: 1.6;
}
header {
background: #2c3e50;
padding: 15px 0;
text-align: center;
}
nav a {
color: #fff;
margin: 0 20px;
text-decoration: none;
font-weight: 700;
}
nav a:hover {
color: #58a6ff;
}
.container {
max-width: 900px;
margin: 20px auto;
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.profile-img {
max-width: 150px;
border-radius: 50%;
display: block;
margin: 0 auto 20px;
}
h1 {
font-size: 2.5em;
color: #2c3e50;
margin-bottom: 10px;
text-align: center;
}
.tagline {
font-size: 1.2em;
color: #7f8c8d;
margin-bottom: 20px;
text-align: center;
}
.section {
margin: 30px 0;
}
.section p {
font-size: 1.1em;
margin-bottom: 15px;
}
.lang-en {
color: #34495e;
}
.lang-zh {
color: #2980b9;
}
.contact {
text-align: center;
margin-top: 20px;
}
.contact a {
color: #2980b9;
text-decoration: none;
font-weight: 700;
}
.contact a:hover {
text-decoration: underline;
}
footer {
text-align: center;
font-size: 0.9em;
color: #7f8c8d;
margin-top: 40px;
}