|
@@ -540,25 +540,28 @@ a[data-fancybox] img {
|
|
|
margin: 0px 0 10px 0;
|
|
|
}
|
|
|
|
|
|
-#profile ul.network-icon {
|
|
|
+ul.network-icon {
|
|
|
display: inline-flex;
|
|
|
flex-direction: row;
|
|
|
flex-wrap: wrap;
|
|
|
justify-content: center;
|
|
|
list-style: none;
|
|
|
padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+#profile .network-icon {
|
|
|
margin-top: 30px;
|
|
|
}
|
|
|
|
|
|
-#profile .network-icon li {
|
|
|
+.network-icon li {
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
|
|
|
-#profile .network-icon li:last-of-type {
|
|
|
+.network-icon li:last-of-type {
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
|
|
|
-#profile .network-icon li:hover {
|
|
|
+.network-icon li:hover {
|
|
|
transform: scale(1.2)
|
|
|
}
|
|
|
|
|
@@ -869,6 +872,69 @@ article .article-metadata {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/*************************************************
|
|
|
+ * Author profile card
|
|
|
+ **************************************************/
|
|
|
+
|
|
|
+.author-card {
|
|
|
+ margin-top: 1rem;
|
|
|
+ padding-top: 1rem;
|
|
|
+ border-top: 1px solid rgba(0,0,0,.05);
|
|
|
+}
|
|
|
+
|
|
|
+.dark .author-card {
|
|
|
+ border-top: 1px solid rgba(255,255,255,.05);
|
|
|
+}
|
|
|
+
|
|
|
+.author-card .portrait {
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+ margin: 0 auto;
|
|
|
+ border-radius: 50%;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+
|
|
|
+.author-card .card-title {
|
|
|
+ margin-top: 0;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: rgba(0, 0, 0, 0.84);
|
|
|
+}
|
|
|
+
|
|
|
+.author-card .card-title a {
|
|
|
+ color: rgba(0, 0, 0, 0.84);
|
|
|
+}
|
|
|
+
|
|
|
+.dark .author-card .card-title,
|
|
|
+.dark .author-card .card-title a {
|
|
|
+ color: rgba(255, 255, 255, 0.84);
|
|
|
+}
|
|
|
+
|
|
|
+.author-card p {
|
|
|
+ margin-bottom: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+.author-card .card-subtitle {
|
|
|
+ font-weight: 300;
|
|
|
+ font-size: 0.8rem;
|
|
|
+ color: rgba(0, 0, 0, 0.54);
|
|
|
+ margin-bottom: 7px;
|
|
|
+}
|
|
|
+
|
|
|
+.dark .author-card .card-subtitle {
|
|
|
+ color: rgba(255, 255, 255, 0.54);
|
|
|
+}
|
|
|
+
|
|
|
+.author-card .card-text {
|
|
|
+ color: rgba(0, 0, 0, 0.76);
|
|
|
+ font-size: 0.8rem;
|
|
|
+ margin-bottom: 4px;
|
|
|
+}
|
|
|
+
|
|
|
+.dark .author-card .card-text {
|
|
|
+ color: rgba(255, 255, 255, 0.76);
|
|
|
+}
|
|
|
+
|
|
|
/*************************************************
|
|
|
* Publications
|
|
|
**************************************************/
|