-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.scss
More file actions
165 lines (139 loc) · 2.86 KB
/
styles.scss
File metadata and controls
165 lines (139 loc) · 2.86 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
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
159
160
161
162
163
164
165
/*-- scss:defaults --*/
$navbar-bg: #ffffff !default;
$navbar-fg: #1f2937 !default;
$navbar-hl: #1f6aa6 !default;
$link-color: #1f6aa6 !default;
$body-bg: #ffffff !default;
$body-color: #19202d !default;
$border-radius: 0.45rem !default;
$card-border-radius: 0.55rem !default;
$card-border-color: #d8deea !default;
$content-padding-top: 0.75rem !default;
/*-- scss:rules --*/
/* Inline badges are used on publications pages. */
span.__dimensions_badge_embed__,
div.altmetric-embed {
display: inline-block;
}
body {
background: #ffffff;
}
#quarto-header .navbar {
background: #ffffff;
border-bottom: 1px solid #e5e7eb;
}
.navbar-brand,
.navbar-nav .nav-link {
letter-spacing: 0.01em;
}
.landing-page .quarto-title-block {
display: none;
}
.landing-shell {
max-width: 1180px;
margin: 0.45rem auto 0.35rem;
padding: 0 0.75rem 0.35rem;
display: grid;
grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
grid-template-areas:
"profile main"
"profile updates";
gap: 0.6rem;
align-items: start;
}
.landing-panel {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.8rem;
box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.landing-profile {
grid-area: profile;
text-align: center;
padding: 0.75rem 0.8rem;
}
.landing-avatar {
width: min(100%, 228px);
border-radius: 0.45rem;
border: 1px solid #d1d5db;
box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
margin-bottom: 0.5rem;
}
.landing-name {
color: #111827;
font-size: clamp(1.8rem, 2vw, 2.2rem);
margin-bottom: 0.5rem;
}
.landing-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.38rem;
}
.landing-main {
grid-area: main;
padding: 0.7rem 0.9rem;
}
.landing-main > p:first-child {
font-size: clamp(1rem, 1vw, 1.12rem);
line-height: 1.3;
margin-bottom: 0.5rem;
}
.landing-main .btn {
margin-bottom: 0.45rem;
}
.landing-focus {
margin-top: 0.02rem;
}
.landing-focus h3 {
font-size: 0.96rem;
text-transform: uppercase;
letter-spacing: 0.03em;
color: #2e3d59;
margin-bottom: 0.3rem;
}
.landing-focus ul {
margin-bottom: 0;
padding-left: 1.2rem;
}
.landing-updates {
grid-area: updates;
padding: 0.58rem 0.9rem 0.55rem;
}
.landing-updates h3 {
margin-bottom: 0.22rem;
}
#listing-recent-updates {
margin-top: 0.1rem;
}
#listing-recent-updates .table {
margin-bottom: 0.3rem;
font-size: 0.9rem;
}
#listing-recent-updates .listing-title {
font-weight: 600;
}
#listing-recent-updates td,
#listing-recent-updates th {
padding-top: 0.24rem;
padding-bottom: 0.24rem;
}
.landing-updates > p:last-child {
margin-bottom: 0;
}
@media (max-width: 992px) {
.landing-shell {
grid-template-columns: 1fr;
grid-template-areas:
"profile"
"main"
"updates";
gap: 0.65rem;
padding: 0 0.65rem 0.5rem;
}
.landing-main,
.landing-profile,
.landing-updates {
padding: 0.85rem;
}
}