-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
100 lines (80 loc) · 1.19 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
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
h1, h2 {
color: #005A9C;
}
h1 {
font-size: 170%;
}
h2 {
font-size: 140%;
}
hr {
color: #d3d3d3;
border-style: dashed;
}
#introduction {
text-align: justify;
word-spacing:-1.8px;
}
body {
font-family: sans-serif;
max-width: 900px;
}
@media only screen and (min-width : 900px)
{
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
padding-left: 2em;
padding-right: 2em;
border-left: 2px dashed #d3d3d3;
border-right: 2px dashed #d3d3d3;
}
}
@media only screen and (max-width : 600px)
{
#introduction {
hyphens: auto;
}
}
@media only screen and (min-width : 451px)
{
#introduction {
margin-right: 0.5em;
}
#photo {
float: left;
margin-right: 1em;
}
}
@media only screen and (max-width : 450px) {
#photo {
text-align: center;
}
}
#photo img {
border: 1px solid;
}
ul.publications li {
margin-top: 1em;
}
span.paper-title {
font-weight: bold;
}
span.conference-name {
font-style: italic;
}
.hidden-note {
display:none;
}
a:link, a:visited, a:active {
color: #003399;
text-decoration: none;
}
a:hover {
color: #003399;
text-decoration: underline;
}