-
Notifications
You must be signed in to change notification settings - Fork 0
/
stile.css
94 lines (83 loc) · 1.54 KB
/
stile.css
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
body {
background-color: #000;
color: #00ff00;
font-family: monospace;
margin: 0;
padding: 0;
overflow: hidden;
}
.console {
width: 100%;
height: 100vh;
overflow: auto;
padding: 30px;
box-sizing: border-box;
}
.command {
margin-bottom: 10px;
font-size: 22px;
}
.commanders{
color: blue;
}
.prompt {
color: #ff0000;
}
.moii{
color:cyan;
}
.prompt-style {
display: flex;
align-items: center;
}
.prompt-prefix {
color: #00ff00;
}
.outputascii-art{
color: #ff0000;
font-family: 'Courier New', monospace;
white-space: pre;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-right: 100px;
font-weight:900;
}
.outputascii-art2 {
color: #ff0000;
font-family: 'Courier New', monospace;
white-space: pre;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
font-size: 6px;
font-weight:900;
}
.links{
color: #00ff00;
font-size: 18px;
}
@media (max-width: 600px) {
.outputascii-art {
padding-top: 20px;
font-size: 6px;
padding-right: 50px;
font-weight:900;
}
.outputascii-art2 {
padding-top: 20px;
font-size: 3px;
font-weight:900;
}
.command {
font-size: 10px;
}
.links{
padding-top: 20px;
font-size: 10px;
}
}