-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (123 loc) · 2.18 KB
/
style.css
File metadata and controls
144 lines (123 loc) · 2.18 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', monospace;
}
body {
background: #000000;
color: #e0e0e0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 15px;
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 600px;
display: flex;
flex-direction: column;
gap: 15px;
}
.header {
text-align: center;
margin-bottom: 5px;
}
.header h1 {
font-size: 1.4rem;
color: #a0a0a0;
margin-bottom: 3px;
font-weight: normal;
letter-spacing: 2px;
}
.terminal {
background: #0a0a0a;
border-radius: 5px;
overflow: hidden;
border: 1px solid #333333;
box-shadow: 0 0 15px rgba(80, 80, 80, 0.2);
}
.terminal-header {
background: #111111;
padding: 6px 10px;
display: flex;
align-items: center;
border-bottom: 1px solid #222222;
}
.terminal-buttons {
display: flex;
gap: 5px;
}
.terminal-button {
width: 8px;
height: 8px;
border-radius: 50%;
}
.close {
background: #ff5f56;
}
.minimize {
background: #ffbd2e;
}
.maximize {
background: #27c93f;
}
.terminal-title {
flex: 1;
text-align: center;
color: #808080;
font-weight: bold;
font-size: 0.8rem;
}
.terminal-status {
font-size: 0.7rem;
padding: 2px 8px;
border-radius: 10px;
background: #1a1a1a;
color: #909090;
}
.terminal-body {
padding: 15px;
height: 250px;
overflow-y: auto;
font-size: 0.9rem;
line-height: 1.5;
}
.output {
margin-bottom: 10px;
color: #d0d0d0;
}
.typing-cursor {
display: inline-block;
width: 8px;
height: 16px;
background: #e0e0e0;
margin-left: 2px;
animation: blink 1s infinite;
vertical-align: middle;
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
.footer {
text-align: center;
margin-top: 15px;
color: #404040;
font-size: 0.7rem;
}
@media (max-width: 768px) {
.container {
max-width: 95%;
}
.header h1 {
font-size: 1.2rem;
}
.terminal-body {
padding: 12px;
height: 220px;
}
}