This repository was archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzening.css
99 lines (81 loc) · 1.47 KB
/
zening.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
body {
--sidebarwidth: 200px;
display: grid;
height: 100vh;
margin: 0;
grid-template-rows: [header] 50px [mainstuff] auto [paperlist] auto;
grid-template-columns: 3% [sidebar] var(--sidebarwidth) [mainstuff] auto 3%;
column-gap: 50px;
justify-items: center;
align-items: start;
color: darkslategray;
font-family: "Avenir Next"
}
a {
margin-right: 10px;
color: steelblue;
text-decoration: none;
}
a > span {
margin-right: 4px;
}
#photo-container {
grid-row-start: mainstuff;
grid-column-start: sidebar;
color: #ddd;
font-size: 0.8em;
cursor: default;
}
#photo-container:hover {
color: #bbb
}
#photo-container #photo {
width: var(--sidebarwidth);
height: var(--sidebarwidth);
border-radius: 250px;
background: url('images/billhowe.png') center;
background-size: contain;
margin: 5px;
}
#lab-intro {
grid-row-start: mainstuff;
grid-column-start: mainstuff;
justify-self: stretch;
}
#name {
justify-self: start;
font-size: 1.8em;
font-family: 'Avenir';
font-weight: bold;
}
#paper-list {
grid-row-start: paperlist;
grid-column-start: mainstuff;
justify-self: left;
}
.paper-category {
margin-top: 30px;
color: #bbb;
font-size: 1.2em;
}
.paper {
margin-top: 10px;
margin-bottom: 10px;
}
.paper-title {
font-weight: bold;
}
.honorable-mention{
color: #b90103;
font-weight: bold;
}
.best-paper {
color: #FFBF17;
font-weight: bold;
}
.me {
/* font-weight: bold; */
}
.links {
font-size: 0.9em;
}