-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.css
More file actions
73 lines (62 loc) · 1.28 KB
/
App.css
File metadata and controls
73 lines (62 loc) · 1.28 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
/* Dark Mode Theme for Main App Container */
.app-container {
width: 100%;
display: flex;
flex-direction: column;
text-align: center;
background-color: #1e1e1e;
height: 100vh;
color: #e0e0e0;
overflow: hidden;
}
.app-toolbar {
background-color: #181818 !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.app-logo {
flex-grow: 1;
display: block;
color: #00f58c;
font-size: 24px;
font-family: monospace;
cursor: pointer;
font-weight: bold;
transition: color 0.2s ease;
}
.app-logo:hover {
color: #2dffa0;
}
.app-content {
flex: 1;
display: flex;
flex-direction: column;
}
/* Global Dark Mode styles */
body {
background-color: #1e1e1e;
color: #e0e0e0;
margin: 0;
padding: 0;
}
/* Button overrides */
.MuiButton-containedPrimary {
background-color: #0d47a1 !important;
color: #ffffff !important;
}
.MuiButton-containedPrimary:hover {
background-color: #1565c0 !important;
}
.MuiButton-containedSecondary {
background-color: #00f58c !important;
color: #111111 !important;
}
.MuiButton-containedSecondary:hover {
background-color: #2dffa0 !important;
}
.MuiButton-containedWarning {
background-color: #bf360c !important;
color: #ffffff !important;
}
.MuiButton-containedWarning:hover {
background-color: #e64a19 !important;
}