-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
135 lines (114 loc) · 2.3 KB
/
Copy pathstyles.css
File metadata and controls
135 lines (114 loc) · 2.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
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
/* === Personal Website — Emre Amasyalı ===
Style conventions adapted from NBP Research Platform */
/* --- Typography & Body --- */
body {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
background-color: #e8e8e8;
color: #444;
}
/* --- Navbar --- */
.navbar {
background-color: #1f003f !important;
font-family: "Gill Sans", sans-serif;
}
.navbar-brand,
.navbar-brand:hover {
color: white !important;
}
.navbar .nav-link {
color: #f8876c !important;
}
.navbar .nav-link:hover {
color: #ccc !important;
background-color: transparent !important;
}
.navbar svg,
.navbar .quarto-navigation-tools svg {
fill: #f8876c !important;
color: #f8876c !important;
}
.navbar-toggler-icon {
background-color: #e8e8e8;
}
/* --- Links in main content --- */
main a {
color: #1f003f;
text-decoration: underline;
}
main a:hover {
color: #3a0070;
text-decoration: underline;
}
main a:visited {
color: #6c2fa0;
}
/* Don't underline the about-page sidebar buttons */
.about-links a,
.about-links a:hover,
.about-links a:visited {
text-decoration: none;
color: inherit;
}
/* --- Content box (inner pages) --- */
.content-box {
max-width: 860px;
margin: 2rem auto;
padding: 2rem 2.5rem;
background-color: rgba(255, 255, 255, 0.92);
border-radius: 0.15rem;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2px);
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box p {
color: #444;
line-height: 1.6;
font-family: "Gill Sans", sans-serif;
}
/* --- Action buttons --- */
.btn-action-primary {
color: white;
background-color: #1f003f !important;
}
.btn-action-primary:hover {
color: #f8876c;
}
.btn-action {
min-width: 165px;
border-radius: 30px;
border: none;
}
/* --- Inline metric badges --- */
span.__dimensions_badge_embed__, div.altmetric-embed {
display: inline-block;
}
/* --- Responsive video --- */
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.responsive-iframe-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 75%;
}
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}