-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (80 loc) · 1.39 KB
/
styles.css
File metadata and controls
99 lines (80 loc) · 1.39 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
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
margin: 0;
padding: 0;
font-weight: normal;
}
ol, ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
/* Demo Styles */
body {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
margin: 0;
padding: 10px 20px;
text-align: center;
color: var(--vscode-foreground);
background-color: var(--vscode-editor-background);
}
h1 {
font-weight: bold;
margin: 24px;
}
#icons {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#icons .icon {
width: 140px;
padding: 20px;
font-size: 14px;
display: flex;
flex-direction: column;
text-align: center;
}
#icons .icon .codicon {
font-size: 32px;
}
/* Codicon mouse events demo */
div.iconBar .codicon {
font-size: 60px;
cursor: pointer;
}
div.iconBar .disabled {
opacity: 0.3;
cursor: not-allowed;
}
/* Codicons in buttons demo */
div.iconButtonBar .iconButton .codicon {
font-size: 40px;
padding: 3px;
}
div.styledIcon .codicon {
font-size: 50px;
color: green;
padding: 3px;
}
/* Rotating the 'loading' Codicon to indicate _progress_. */
.rotate {
animation: rotation 2s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}