-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (117 loc) · 1.67 KB
/
style.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
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
/* body{
background: #000;
} */
.content{
background: #000;
color: #F7F7F7;
height: 65vh;
border-radius: 10px;
overflow: auto;
}
.terminal{
background: #333;
padding: 20px;
border-radius: 10px;
margin-top: 2rem;
}
.padding-zero{
padding-right: 0px;
padding-left: 0px;
}
.row{
margin-right: 0px;
margin-left: 0px;
}
pre{
overflow: unset;
}
.sucess{
color: #00E500;
}
.error{
color: #ff7777;
}
.red{
color: red;
}
.help{
color:#fff;
}
.logo-hidden{
visibility: hidden;
}
.left{
display: block;
text-align: left;
padding-left:1rem;
padding-top:0.5rem;
}
.command{
position: relative;
bottom: 0px;
background: #333;
width: 100%;
padding: 0 0 0 15px;
}
#command{
width: 100%;
background: #333;
color: #ddd;
border: none;
outline: none;
}
.logo{
font-size: smaller;
}
footer{
bottom: 1;
position: relative;
text-align: center;
padding: 1rem;
}
.bug{
width: 30px;
height: 30px;
}
a{
text-decoration: none !important;
}
.command::before{
content: "$";
position: absolute;
top: 1px;
left: 0;
color: #ddd;
}
/* width */
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #000;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 5px;
}
@media (max-width: 992px){
.content{
height: 60vh;
}
}
@media (max-width: 768px){
.content{
height: 50vh;
}
}
@media (max-width: 650px){
.content{
height: 30vh;
}
.logo{
font-size: 1.7vw;
}
}