-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
97 lines (83 loc) · 1.66 KB
/
App.css
File metadata and controls
97 lines (83 loc) · 1.66 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #1a1a1a;
color: #ffffff;
overflow: hidden;
}
.app {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
background-color: #1a1a1a;
}
.app-header {
background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
padding: 16px 24px;
border-bottom: 2px solid #005a9e;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.app-title {
margin: 0;
font-size: 24px;
font-weight: 700;
color: #ffffff;
letter-spacing: -0.5px;
}
.app-subtitle {
font-size: 13px;
color: rgba(255, 255, 255, 0.85);
margin-top: 2px;
}
.app-content {
flex: 1;
display: flex;
overflow: hidden;
}
/* Main editor area - contains tab bar and tree editor */
.main-editor-area {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
/* Utility classes */
.mono {
font-family: 'Courier New', Courier, monospace;
}
/* Selection styling */
::selection {
background-color: #0078d4;
color: #ffffff;
}
/* Scrollbar styling for the entire app */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #444;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Focus outline */
button:focus-visible,
input:focus-visible,
select:focus-visible {
outline: 2px solid #0078d4;
outline-offset: 2px;
}