-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (69 loc) · 1.3 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
body {
background: #3d3d3d;
margin: 0;
padding: 0;
display: flex;
font-family: sans-serif;
flex-direction: column;
color: white;
overflow: hidden;
}
#tiles {
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: flex-start;
align-content: space-around;
font-family: sans-serif;
margin-top: 10px;
}
body > h1 {
text-align: center;
margin: 0;
font-size: 110%px;
}
#tiles div.project {
margin-top: 15px;
margin-bottom: 15px;
cursor: pointer;
width: 30%;
height: 40%;
border-radius: 8px;
background-size: auto 100%;
/* background-repeat: no-repeat; */
background-color: rgb(41, 41, 41);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 10px;
}
div.project h3 {
font-size: 2em;
margin-bottom: .3em;
text-align: center;
}
div.project > * {
text-shadow: 1px 1px 2px black, 0 0 25px rgb(0, 0, 0), 0 0 5px darkblue;
}
div.project p {
margin: 0;
font-size: 1.3em;
text-align: center;
}
div.project a {
color: white;
}
span#small_dscr {
font-size: .7em;
}
p#latest_paper {
font-size: 1.2em;
text-align: center;
margin: 0;
}
p#latest_paper a {
color: white;
}