-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdashboardStyle.css
118 lines (102 loc) · 2.93 KB
/
dashboardStyle.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
h2{
color: #038901;
font-family: "VT323", monospace;
margin: 0;
padding-bottom: 10px;
}
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
overflow: hidden; /* Prevent scrolling */
}
.outer-container {
border: 5px solid #121212; /* Border around everything */
height: 100vh; /* Full viewport height */
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
.container {
display: grid;
grid-template-rows: 1fr 1fr; /* Two rows of equal height */
grid-template-columns: 1fr 1.5fr 1fr; /* Three columns with the middle column being larger */
gap: 10px;
width: 100%; /* Full width */
height: 100%; /* Full height */
padding: 10px;
box-sizing: border-box;
background: #121212;
}
.section {
display: flex;
flex-direction: column;
justify-content: flex-start; /* Aligns content to the top */
align-items: center; /* Keeps horizontal centering */
background-color: #121212;
border: 5px solid #7f7f7f; /* Border color matches the gap color */
border-radius: 5%;
box-sizing: border-box;
padding: 10px;
width: 100%; /* Ensure each section uses full container width */
overflow: hidden; /* Prevents overflow */
}
#section1 {
grid-row: 1 / 2;
grid-column: 1 / 2;
}
#section2 {
grid-row: 1 / 2;
grid-column: 2 / 3;
}
#section3 {
grid-row: 1 / 2;
grid-column: 3 / 4;
}
#section4 {
grid-row: 2 / 3;
grid-column: 1 / 4; /* Span across all columns */
overflow: hidden;
}
.terminal-output {
flex-grow: 1;
width: 100%;
background-color: #121212;
color: #7f7f7f;
font-family: monospace;
padding: 10px;
overflow-y: auto;
margin-bottom: 10px;
max-height: calc(100% - 60px); /* Adjust as needed to fit within section */
}
.terminal-output::-webkit-scrollbar{
display: none;
}
.terminal-input {
width: 97%;
padding: 10px;
font-family: monospace;
border: 1px solid #7f7f7f;
overflow-y: auto;
}
.content {
color: #7f7f7f; /* Sets the text color to light green, matching the headers */
font-family: "VT323", monospace; /* Optional: to match the font style of the headers */
padding: 10px; /* Provides some spacing inside the content box */
width: 100%; /* Ensures the content fills the width of the section */
overflow: auto; /* Adds scrolling to the content area if the content exceeds the section height */
}
.vt323-regular {
font-family: "VT323", monospace;
font-weight: 400;
font-style: normal;
}
.sub-content {
color: #7f7f7f; /* Match the text color with other content */
padding: 5px 0; /* Adds a little space above and below the text */
font-size: 0.9em; /* Slightly smaller font size than main content */
margin-top: 10px; /* Adds space above the sub-content text for better separation */
display: block; /* Ensures the text starts on a new line */
}