forked from NVIDIA-Omniverse/LearnOpenUSD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlousd_custom.css
More file actions
143 lines (124 loc) · 3.31 KB
/
Copy pathlousd_custom.css
File metadata and controls
143 lines (124 loc) · 3.31 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
/*
* SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
video
{
width: 100%;
}
/* Kaltura video container styles */
.video-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
margin: 20px 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
/* Survey button styles */
.styled-button {
background-color: #76b900;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}
.styled-button:hover {
background-color: #5a8c00;
}
table.venv-setup {
vertical-align: middle;
}
table.venv-setup .highlight-shell, .table.venv-setup .highlight-powershell {
margin: 0;
}
.home-header > h1 {
background-image: url(../learn-openusd-bbm-t@2x.jpg);
background-size: cover;
height: 100px;
padding-right: 50%;
color: black;
}
/* Swap hero image/text when the theme toggle sets data-theme="dark" */
html[data-theme="dark"] .home-header > h1 {
background-image: url(../learn-openusd-bbm-dark.jpg);
color: white;
}
/***********
* TIPPY CSS
************/
.tippy-box {
background-color:var(--pst-color-surface);
color:var(--pst-color-text-base);
border: 1px solid var(--pst-color-border);
}
/* Show only the first paragraph in glossary term tooltips */
.tippy-box dd > p:not(:first-child) {
display: none;
}
/* Also hide other elements after the first paragraph */
.tippy-box dd > p:first-child ~ * {
display: none;
}
/* Add instruction at the end of glossary tooltips */
.tippy-box dd::after {
content: "Click the term for the full definition";
display: block;
margin-top: 0.75rem;
padding-top: 0.5rem;
border-top: 1px solid var(--pst-color-border);
font-size: 0.875em;
font-style: italic;
color: var(--pst-color-text-muted);
text-align: center;
}
/* Disable dark-mode dimming on content screenshots */
html[data-theme="dark"] .bd-content img,
html[data-theme="dark"] article img,
html[data-theme="dark"] main img {
filter: none !important;
opacity: 1 !important;
/***********
* CODE HIGHLIGHTS (Sphinx / Pygments)
************/
/*
* Emphasized lines (:emphasize-lines: / hl_lines): background must span the full width of
* long lines inside horizontally scrollable blocks (issue #12).
*/
div.highlight {
overflow-x: auto;
}
div.highlight pre {
width: max-content;
min-width: 100%;
box-sizing: border-box;
}
div.highlight .hll {
display: block;
width: 100%;
box-sizing: border-box;
}