forked from lowlighter/metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
165 lines (145 loc) · 3.48 KB
/
style.css
File metadata and controls
165 lines (145 loc) · 3.48 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
/* SVG global context */
svg {
font-family: 'Courier Prime';
font-size: 14px;
color: #777777;
}
/* Title bar */
.header {
display: flex;
justify-content: space-between;
width: 100%;
height: 20px;
align-items: center;
padding: 0 8px;
box-sizing: border-box;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background: linear-gradient(#504b45 0%,#3c3b37 100%);
}
.title {
color: #d5d0ce;
font-size: 16px;
}
.buttons {
display: flex;
align-items: center;
}
.button {
color: black;
display: flex;
justify-content: center;
margin-right: 5px;
font-size: 8px;
height: 12px;
width: 12px;
border-radius: 100%;
background: linear-gradient(#7d7871 0%, #595953 100%);
text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
}
.button.exit {
background: linear-gradient(#f37458 0%, #de4c12 100%);
}
/* Terminal */
pre, .banner, footer {
margin: 0;
font-family: 'Courier Prime';
color: #DDDDDD;
}
pre {
background: #42092B;
padding: 12px;
border-radius: 5px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.banner, footer {
color: #AE9DA7;
}
.warnings {
color: #D79533;
white-space: normal;
}
/* Isocalendar */
.isocalendar svg {
margin-top: -20px !important;
}
/* Images */
.isocalendar svg, .screenshot {
filter: grayscale(1) brightness(.9) opacity(.7);
}
/* Autosize */
.autosize {
width: auto;
height: auto;
}
/* Prompt */
.ps1-path {
color: #7EDA29;
}
.ps1-location {
color: #4878c0;
}
/* Diff */
.diff {
color: #3A96DD;
}
/* Error */
.error {
color: #cb2431;
}
/* Animations */
.stdin, footer {
width: 0%;
white-space: nowrap;
overflow: hidden;
animation-name: stdin-animation;
animation-fill-mode: both;
}
.stdout {
max-height: 0%;
overflow: hidden;
animation-name: stdout-animation;
animation-fill-mode: both;
}
@keyframes stdin-animation {
0% { width: 0%; }
100% { width: 100%; }
}
@keyframes stdout-animation {
0% { max-height: 0; }
100% { max-height: 360px; }
}
/* Calendar */
:root {
--color-calendar-graph-day-bg: #ebedf0;
--color-calendar-graph-day-border: rgba(27,31,35,0.06);
--color-calendar-graph-day-L1-bg: #9be9a8;
--color-calendar-graph-day-L2-bg: #40c463;
--color-calendar-graph-day-L3-bg: #30a14e;
--color-calendar-graph-day-L4-bg: #216e39;
--color-calendar-halloween-graph-day-L1-bg: #ffee4a;
--color-calendar-halloween-graph-day-L2-bg: #ffc501;
--color-calendar-halloween-graph-day-L3-bg: #fe9600;
--color-calendar-halloween-graph-day-L4-bg: #03001c;
--color-calendar-winter-graph-day-L1-bg: #0a3069;
--color-calendar-winter-graph-day-L2-bg: #0969da;
--color-calendar-winter-graph-day-L3-bg: #54aeff;
--color-calendar-winter-graph-day-L4-bg: #b6e3ff;
--color-calendar-graph-day-L4-border: rgba(27,31,35,0.06);
--color-calendar-graph-day-L3-border: rgba(27,31,35,0.06);
--color-calendar-graph-day-L2-border: rgba(27,31,35,0.06);
--color-calendar-graph-day-L1-border: rgba(27,31,35,0.06);
}
/* End delimiter */
#metrics-end {
width: 100%;
}
.no-animations * {
transition-delay: 0s !important;
transition-duration: 0s !important;
animation-delay: -0.0001s !important;
animation-duration: 0s !important;
animation-play-state: paused !important;
caret-color: transparent !important;
}