-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (72 loc) · 2.27 KB
/
style.css
File metadata and controls
77 lines (72 loc) · 2.27 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
/* TMM-OS VIS v5.0 | Brand Identity Stylesheet | Final Build */
/* --- Base & Typography --- */
html, body {
margin: 0; padding: 0; box-sizing: border-box; height: 100%;
}
body {
background-color: #FFF8E7; color: #000000;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
display: flex; flex-direction: column;
justify-content: center; align-items: center; text-align: center;
}
/* --- Header --- */
header { margin-bottom: 2.5rem; }
h1 {
font-size: 24px; font-weight: 900; text-transform: uppercase;
letter-spacing: 0; margin: 0;
}
h2 {
font-size: 15px; font-weight: 700; text-transform: uppercase;
color: #FF0000; margin: 10px 0 0 0;
}
/* --- Main Canvas & Loading Wrapper --- */
#canvas-wrapper {
position: relative; /* This is key for positioning the overlay */
width: 640px;
height: 480px;
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
#loading-overlay {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
background-color: #FFF8E7;
z-index: 10;
}
#loading-overlay.hidden {
display: none;
}
/* --- Footer & Action Bar --- */
footer { margin-top: 2.5rem; }
#action-bar { display: flex; gap: 15px; }
#action-bar button {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 15px; font-weight: 700; text-transform: uppercase;
background: none; border: 2px solid #000000; color: #000000;
padding: 8px 15px; cursor: pointer; transition: all 0.2s ease-in-out;
}
#action-bar button:hover { background: #000000; color: #FFF8E7; }
/* --- Project Statement Overlay --- */
#project-statement-overlay {
display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background-color: rgba(0, 0, 0, 0.7); justify-content: center;
align-items: center; z-index: 1000;
}
#project-statement-overlay.visible { display: flex; }
.statement-content {
background-color: #FFF8E7; padding: 40px; max-width: 500px;
text-align: left; border: 1px solid #000;
}
.statement-content p {
font-size: 16px; font-weight: 400; line-height: 1.6; margin: 0;
}
.statement-content p strong {
font-size: 18px; font-weight: 700; display: block; margin-bottom: 1rem;
}