-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (60 loc) · 1.5 KB
/
styles.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
/* css styles */
.navbar-logo {
max-height: 50px;
}
:root {
--pink: #983E82; /* hsl(315, 42%, 42%) */
--orange: #E2A458; /* hsl( 33, 70%, 62%) */
--yellow: #F5DC70; /* hsl( 49, 87%, 70%) */
--green: #59935B; /* hsl(122, 25%, 46%) */
--blue: #467AAC; /* hsl(209, 42%, 47%) */
--purple: #61589C; /* hsl(248, 28%, 48%) */
--grey: #2C3E4F;
}
/* rainbow borders */
nav {
margin-top: 18px;
box-shadow: 0 -3px 0 0px var(--purple),
0 -6px 0 0px var(--blue),
0 -9px 0 0px var(--green),
0 -12px 0 0px var(--yellow),
0 -15px 0 0px var(--orange),
0 -18px 0 0px var(--pink);
}
.hexes a { display: inline-block;
width: 16.66%;
padding: 0;
margin: 0;}
.hexes img { width: 100%; padding: 0; border: 0; margin: 0; }
.hexrow { display: block; clear: both; margin-top: -2.5%;}
.hexrow:nth-child(1) { margin-top: 0; }
.hexrow:nth-child(1), .hexrow:nth-child(3) { padding-left: 8.33%; padding-right: 8.33%;}
.hexrow:nth-child(1) a, .hexrow:nth-child(3) a { width: 20%; }
.hex {
float: right;
width:150px;
margin:0px 20px;
}
.reslist, .paperlist {
list-style-type: none;
}
.reslist li > div:first-child {
width: 20%;
max-width: 150px;
min-width: 50px;
vertical-align: top;
float: left;
}
.reslist li div:nth-child(2) {
margin-left: 22.5%;
}
.reslist li > div:first-child img {
display: block;
width: 100%;
}
.paperlist h3 {
font-size: 120%;
}
.paperlist .abstract {
font-style: italic;
}