-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (64 loc) · 1.35 KB
/
styles.css
File metadata and controls
74 lines (64 loc) · 1.35 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
@font-face {
font-family: 'Source Code Pro';
src: url(./WOFF2/OTF/SourceCodePro-Black.otf.woff2);
}
/* #odin-watermark {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
opacity: 0.6;
z-index: 0;
width: 400vw;
height: auto;
} */
.header {
text-align: center;
font-family: 'Source Code Pro';
border-bottom: transparent;
}
a {
color: inherit;
text-decoration: inherit;
}
.container {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /*Center vertically*/
height: 70vh;
}
.terminal-window {
max-width: fit-content;
height: auto;
margin: 0 auto;
box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.3);
border-radius: 6px;
overflow: hidden;
font-size: larger;
}
.terminal-window .title {
color: #b4b4b4;
background-color: #2f2f2f;
text-align: right;
padding: 6px;
}
.terminal-window .content {
background-color: black;
padding: 10px;
}
.terminal-window .content .prompt-symbol {
color: lightcyan;
}
.terminal-window .content .command {
color: #0CBD79;
}
.terminal-window .content .argument.directory {
color: white;
text-decoration: underline;
}
.ls-response * {
color: yellow;
list-style-type: none;
margin: 5px;
}