-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (81 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (81 loc) · 1.46 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
/* From Uiverse.io by jeremyssocial */
@keyframes blinkCursor {
50% {
border-right-color: transparent;
}
}
@keyframes typeAndDelete {
0%,
10% {
width: 0;
}
45%,
55% {
width: 6.2em;
} /* adjust width based on content */
90%,
100% {
width: 0;
}
}
.terminal-loader {
border: 0.1em solid #333;
background-color: #1a1a1a;
color: #0f0;
font-family: "Courier New", Courier, monospace;
font-size: 1em;
padding: 1.5em 1em;
width: 12em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 4px;
position: relative;
overflow: hidden;
box-sizing: border-box;
}
.terminal-header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1.5em;
background-color: #333;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 0 0.4em;
box-sizing: border-box;
}
.terminal-controls {
float: right;
}
.control {
display: inline-block;
width: 0.6em;
height: 0.6em;
margin-left: 0.4em;
border-radius: 50%;
background-color: #777;
}
.control.close {
background-color: #e33;
}
.control.minimize {
background-color: #ee0;
}
.control.maximize {
background-color: #0b0;
}
.terminal-title {
float: left;
line-height: 1.5em;
color: #eee;
}
.text {
display: inline-block;
white-space: nowrap;
overflow: hidden;
border-right: 0.2em solid green; /* Cursor */
animation:
typeAndDelete 4s steps(11) infinite,
blinkCursor 0.5s step-end infinite alternate;
margin-top: 1.5em;
}