-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
161 lines (129 loc) · 2.48 KB
/
styles.css
File metadata and controls
161 lines (129 loc) · 2.48 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: center;
background: #444;
margin: 0;
}
nav ul li {
margin: 0;
}
nav ul li a {
color: #fff;
text-decoration: none;
padding: 0.5em 1em;
display: block;
}
nav ul li a:hover {
background: #555;
}
section {
margin: 2em;
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 0.5em;
}
ul {
list-style-type: none;
padding: 0;
}
.project {
border: 1px solid #ddd;
padding: 1em;
margin-bottom: 1em;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
#selected_publications {
margin-top: 2rem;
}
#selected_publications h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.pub-list {
list-style-type: decimal; /* or disc if you prefer bullets */
margin: 0; /* removes default browser margin */
padding-left: 1rem; /* small consistent left indent */
}
.pub-list li {
margin-bottom: 1.2rem; /* spacing between items */
line-height: 1.5;
}
.pub-title {
font-weight: bold;
font-size: 1.05rem;
}
.pub-authors {
margin-top: 0.2rem;
}
.pub-venue {
font-size: 0.9rem;
color: #555;
margin-top: 0.2rem;
}
.pub-list a {
display: inline-block;
margin-top: 0.2rem;
color: #0047ab;
text-decoration: none;
}
.pub-list a:hover {
text-decoration: underline;
}
.pub-legend {
font-size: 0.9rem;
color: #555;
margin-top: 0.4rem; /* space above the legend */
margin-bottom: 1rem; /* space below the legend */
font-style: italic;
}
.patent-list {
list-style-type: disc;
margin: 0; /* removes default margin */
padding-left: 1rem; /* small consistent indent */
}
.patent-list li {
margin-bottom: 1rem;
line-height: 1.5;
}
.patent-title {
font-weight: bold;
font-size: 1.05rem;
}
.patent-authors {
margin-top: 0.2rem;
}
.patent-ref {
font-size: 0.9rem;
color: #555;
margin-top: 0.2rem;
}
.patent-ref a {
color: #0047ab;
text-decoration: none;
}
.patent-ref a:hover {
text-decoration: underline;
}