-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (106 loc) · 2.05 KB
/
style.css
File metadata and controls
124 lines (106 loc) · 2.05 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* Basic Styles */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
text-align: center;
margin-bottom: 10px;
}
nav ul {
list-style: none;
padding: 0;
text-align: center;
margin-bottom: 30px;
}
nav ul li {
display: inline;
margin-right: 15px;
}
nav ul li a {
text-decoration: none;
color: #007BFF;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
h2 {
border-bottom: 2px solid #007BFF;
padding-bottom: 10px;
margin-top: 30px;
}
#publications-list ul {
list-style: none;
padding: 0;
}
#publications-list li {
margin-bottom: 20px;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #fafafa;
}
#publications-list .title {
font-weight: bold;
font-size: 1.1em;
display: block;
margin-bottom: 5px;
}
#publications-list .year {
color: #666;
margin-bottom: 5px; /* Adjusted margin */
display: block;
}
#publications-list .last-modified {
color: #666;
font-size: 0.9em;
margin-bottom: 10px;
display: block;
}
#publications-list .doi-link {
display: inline-block;
text-decoration: none;
background-color: #007BFF;
color: #fff;
padding: 5px 10px;
border-radius: 3px;
font-size: 0.9em;
}
#publications-list .doi-link:hover {
background-color: #0056b3;
}
footer {
text-align: center;
margin-top: 40px;
color: #777;
}
pre {
background-color: #eee;
padding: 1em;
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.publication-abstract {
margin: 8px 0 0;
color: #444;
font-size: 0.95em;
}
.publication-keywords {
margin: 4px 0 0;
color: #555;
font-size: 0.9em;
}