-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (59 loc) · 991 Bytes
/
style.css
File metadata and controls
72 lines (59 loc) · 991 Bytes
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
@font-face {
font-family: 'Bitter';
src: url('BitterPro-Regular.ttf');
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Times New Roman', Times, serif;
color: #0f0b07;
background-color: #fff8f0;
}
h1, h2, h3, h4 {
font-family: Arial, Helvetica, sans-serif;
}
body {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
}
header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
header h2, header h3 {
color: #666;
}
#me-face {
max-height: 12rem;
padding: 1rem;
border-radius: 20%;
}
.container {
max-width: 50rem;
}
main {
margin: auto;
padding: 1rem;
text-align: justify;
}
.paper-publication {
font-style: italic;
}
.paper-type {
font-weight: bold;
}
.right {
text-align: right;
float: right;
}
.authors, .paper-publication {
color: #444;
}
li {
margin-bottom: 1rem;
}