-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStyle.css
68 lines (59 loc) · 1.45 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
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
font: inherit;
}
body {
background-color: #212338;
color: #fff;
overflow-x: hidden;
height: 100vh; /* Set body height to 100% of viewport height */
}
.navbar {
background-color: #212338;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.col {
flex: none;
}
#Editor {
width: 100%;
height: calc(100vh - 60px); /* Adjust height to leave space for navbar */
min-height: 600px; /* Ensure it doesn't go below 600px */
}
.sidearea {
width: 20%;
height: calc(100vh - 60px); /* Adjust height to leave space for navbar */
display: flex;
justify-content: space-between;
overflow-y: auto; /* Allows vertical scrolling */
overflow-x: hidden;
}
.editorside {
width: 80%;
height: calc(100vh - 60px); /* Adjust height to leave space for navbar */
}
.list-group {
display: flex;
align-items: center;
width: 100%;
gap: 20px;
font-size: 35px;
margin: 5px;
padding: 5px;
padding-left: 10px;
text-align: center;
height: calc(100% - 20px); /* Ensure it fits within the parent */
/* overflow-y: auto; Allows vertical scrolling */
overflow: hidden; /* Allow scrolling within the list if needed */
}
.list-group i {
margin: 5px;
cursor: pointer;
}
.CodeMirror{
height: 600px;
}