-
Notifications
You must be signed in to change notification settings - Fork 0
/
e3d.css
executable file
·158 lines (138 loc) · 3.06 KB
/
e3d.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.graph-wrapper {
position: relative;
width: 100vw;
background-color: #242424;
}
.graph-controls div.graph-controls-zoom {
display: flex;
flex-direction: column-reverse;
}
.graph-controls-zoom button {
text-align: center;
text-decoration: none;
display: inline-block;
color: white;
border: 2px solid white;
background-color: transparent;
width: fit-content;
height: fit-content;
padding: 15px 20px;
transition: all 0.1s ease;
}
.graph-controls-zoom button:hover {
animation-duration: .8s;
animation-name: clignoter;
animation-iteration-count: infinite;
transition: none;
}
.graph-controls-zoom button:nth-child(2) {
font-size: 0;
}
.graph-controls-zoom button:nth-child(2)::before {
content: "R";
font-size: 10px;
}
main#record-container {
background-color: transparent;
backdrop-filter: blur(10px);
color: white;
border: solid 2px #33ffbe;
box-shadow: none;
}
.record footer li .record-links-context {
color: black;
}
.record header {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
button.record-btn-close {
position: absolute;
margin: 0px;
top: 0;
left: 0;
background-color: transparent;
color: white;
border-right: 2px solid #33ffbe;
border-bottom: 2px solid #33ffbe;
border-left: none;
border-top: none;
padding: 5px 10px;
transition: all 0.1s ease;
}
button.record-btn-close:hover {
animation-duration: .8s;
animation-name: clignoter;
animation-iteration-count: infinite;
transition: none;
}
@keyframes clignoter {
0% { opacity:1; }
40% {opacity:0; }
100% { opacity:1; }
}
line {
stroke: white;
}
circle {
stroke: white;
fill: #242424;
}
.graph-controls {
position: absolute;
top: 0;
left: 0;
background-color: transparent;
backdrop-filter: blur(10px);
border-right: 2px solid #33ffbe;
border-bottom: 2px solid #33ffbe;
padding: 25px;
width: fit-content;
height: fit-content;
}
.graph-timeline {
color: white;
border-top: 2px solid #33ffbe;
padding: 25px;
background-color: #242424;
width: 100vw;
left: 0;
bottom: 0;
height: fit-content;
}
.graph-controls::before {
backdrop-filter: none;
}
.graph-controls-focus {
display: none;
}
article.record header {
display: grid;
gap: 0 1em;
grid-template:
"img title" auto
"img id" auto
"img type" auto
"img tags" auto
"img prenom" auto
"img nom" auto
"img orcid" auto
"img hal" auto
"img gscholar" auto
"img wikipedia" auto
"img twitter" auto / 1fr 2fr;
}
h1.record-title { grid-area: title }
img.record-img { grid-area: img }
div.record-id { grid-area: id }
div.record-type { grid-area: type }
div.record-tags { grid-area: tags }
div.record-prenom { grid-area: prenom }
div.record-nom { grid-area: nom }
div.record-orcid { grid-area: orcid }
div.record-hal { grid-area: hal }
div.record-gscholar { grid-area: gscholar }
div.record-wikipedia { grid-area: wikipedia }
div.record-twitter { grid-area: twitter }