forked from rinpharma/rinpharma-summit-2025
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
171 lines (150 loc) · 2.93 KB
/
Copy pathstyles.css
File metadata and controls
171 lines (150 loc) · 2.93 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
166
167
168
169
170
171
/* styles.css — Custom styling for R/Pharma Summit Quarto page */
/* General page style */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #2a2a2a;
}
/* Headings */
h1, h2, h3, h4 {
font-weight: 700;
letter-spacing: 0.5px;
margin-top: 1.2em;
margin-bottom: 0.6em;
color: #1c3f95; /* Deep pharma blue */
}
h1 {
font-size: 2.2rem;
border-bottom: 3px solid #1c3f95;
padding-bottom: 0.3rem;
}
h2 {
font-size: 1.8rem;
border-left: 6px solid #1c3f95;
padding-left: 0.5rem;
}
h3 {
font-size: 1.4rem;
color: #333333;
}
/* Links */
a {
color: #0077b6;
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
color: #023e8a;
}
/* Callouts (Quarto built-in) */
.callout {
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
padding: 0.8em 1em;
}
.callout-note {
border-left: 6px solid #0077b6;
}
.callout-important {
border-left: 6px solid #d62828;
}
/* Agenda table */
table {
width: 100%;
margin: 1em 0;
border-collapse: collapse;
font-size: 0.95rem;
}
table thead {
background-color: #1c3f95;
color: white;
}
table th, table td {
padding: 0.6em 0.8em;
border: 1px solid #ddd;
text-align: left;
}
table tbody tr:nth-child(even) {
background-color: #f7f9fc;
}
/* Lists */
ul {
margin-top: 0.5em;
margin-bottom: 1em;
}
ul li {
margin-bottom: 0.3em;
}
/* Horizontal rules */
hr {
border: 0;
height: 2px;
background: linear-gradient(to right, #1c3f95, #0077b6, #90e0ef);
margin: 2em 0;
}
/* Images */
img {
display: block;
margin: 1.5em auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
max-width: 100%;
height: auto;
}
/* Agenda table column control */
.agenda-table table {
width: 100%;
border-collapse: collapse;
}
.agenda-table table th:nth-child(1),
.agenda-table table td:nth-child(1) {
white-space: nowrap; /* stop wrapping */
min-width: 80px; /* enough room for long times like "11:15–12:30pm" */
}
.agenda-table table th:nth-child(2),
.agenda-table table td:nth-child(2) {
width: 25%; /* chair column gets a reasonable share */
}
.agenda-table table th:nth-child(3),
.agenda-table table td:nth-child(3) {
width: auto; /* description takes the rest */
}
/* Signup embed */
.signup-embed {
display: flex;
justify-content: center;
}
.signup-embed iframe {
width: min(100%, 600px);
height: 980px;
border: 1px solid #bfcbda88;
border-radius: 4px;
}
/* Endorsement logos */
.endorsement-block {
margin: 1rem 0 2rem;
text-align: center;
}
.endorsement-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.endorsement-logo {
display: block;
max-height: 64px;
width: auto;
height: auto;
margin: 0;
border-radius: 0;
box-shadow: none;
}
.endorsement-logo-osp {
background-color: #1c3f95;
padding: 0.5rem 0.75rem;
border-radius: 8px;
}