Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/media-preview/media/videoPreview.css
3292 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
html {
7
width: 100%;
8
height: 100%;
9
text-align: center;
10
}
11
12
body {
13
padding: 5px 10px;
14
width: calc(100% - 20px);
15
height: calc(100% - 10px);
16
display: flex;
17
justify-content: center;
18
align-items: center;
19
-webkit-user-select: none;
20
user-select: none;
21
}
22
23
.loading-indicator {
24
width: 30px;
25
height: 30px;
26
background-image: url('./loading.svg');
27
background-size: cover;
28
}
29
30
.loading-indicator,
31
.loading-error {
32
display: none;
33
}
34
35
.loading .loading-indicator,
36
.error .loading-error {
37
display: block;
38
}
39
40
.loading-error {
41
margin: 1em;
42
}
43
44
.vscode-dark .loading-indicator {
45
background-image: url('./loading-dark.svg');
46
}
47
48
.vscode-high-contrast .loading-indicator {
49
background-image: url('./loading-hc.svg');
50
}
51
52