-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (88 loc) · 1.75 KB
/
styles.css
File metadata and controls
101 lines (88 loc) · 1.75 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
99
100
101
.resume_cn {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #f8f9fa;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-family: Arial, sans-serif;
}
.resume_cn h1 {
margin-top: 0;
text-align: center;
}
.resume_cn h2 {
border-bottom: 1px solid #dee2e6;
padding-bottom: 5px;
}
.resume_cn p {
line-height: 1.5;
}
.resume_en {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #f8f9fa;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-family: Arial, sans-serif;
}
.resume_en h1 {
margin-top: 0;
text-align: center;
}
.resume_en h2 {
border-bottom: 1px solid #dee2e6;
padding-bottom: 5px;
}
.resume_en p {
line-height: 1.5;
}
/* Add more styles as needed */
.display{
display: block ;
/* color: blue; */
}
.display-none {
display: none;
color: red;
}
li{
/* 列表项间距 */
margin: 10px 0;
}
/* 按钮 */
.button{
/* 按钮位置右对齐 */
float: right;
}
.modern-btn {
float: right;
display:
inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: #FFFFFF;
text-decoration: none;
border: none;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.1s ease;
cursor: pointer;
font-family: Arial, sans-serif;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}
.modern-btn:hover {
background-color: #45a049;
transform: translateY(-2px);
}
.modern-btn:active {
background-color: #388e3c;
transform: translateY(0);
}
.modern-btn:focus {
outline: 2px solid #4CAF50;
transition: outline-color 0.3s ease;
}
.modern-btn:focus-visible {
outline-color: #FFFFFF;
}