-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
190 lines (167 loc) · 3.74 KB
/
styles.css
File metadata and controls
190 lines (167 loc) · 3.74 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
body{
padding: 25px;
}
.title {
color: #5C6AC4;
}
/* Basic CSS Reset & Global Styles */
:root {
--primary-color: #007BFF;
--dark-blue: #0d2c4e;
--light-gray: #f4f4f7;
--text-color: #333;
--light-text: #666;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: #fff;
}
/* Header Styling */
header {
background: var(--dark-blue);
color: #fff;
padding: 2rem 1rem;
text-align: center;
border-bottom: 4px solid var(--primary-color);
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header .author {
font-size: 1.1rem;
color: #ccc;
margin-top: 0.5rem;
}
/* Main Content & Sections */
main {
width: 100%;
}
.content-section {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
text-align: center;
}
.content-section h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
color: var(--dark-blue);
}
.content-section p {
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto 2rem auto;
color: var(--light-text);
}
.gray-bg {
background-color: var(--light-gray);
}
/* Hero Section with 3D Model */
#hero-section {
position: relative;
width: 100%;
height: 60vh; /* Adjust height as needed */
background-color: #111;
}
#scene-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 20px;
padding: 20px 30px;
background: rgba(0, 0, 0, 0.7);
border-radius: 8px;
z-index: 100;
}
#controls-info {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
}
/* Card Layout for Applications */
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
text-align: left;
}
.card {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.card h3 {
margin-top: 0;
color: var(--primary-color);
}
/* Analysis List Styling */
.analysis-list {
max-width: 800px;
margin: 2rem auto 0 auto;
padding: 0;
list-style: none;
text-align: left;
}
.analysis-list li {
background: #fff;
padding: 1rem 1.5rem;
margin-bottom: 1rem;
border-left: 5px solid var(--primary-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border-radius: 0 5px 5px 0;
color: var(--light-text);
font-size: 1.05rem;
transition: transform 0.2s ease;
}
.analysis-list li:hover {
transform: translateX(5px);
}
/* Call-to-Action Button */
.cta-button {
display: inline-block;
background-color: var(--primary-color);
color: #fff;
padding: 1rem 2.5rem;
text-decoration: none;
font-size: 1.1rem;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #0056b3;
}
/* Footer */
footer {
background-color: var(--dark-blue);
color: #ccc;
text-align: center;
padding: 1.5rem;
margin-top: 0; /* Adjusted since the section before it has a gray bg */
}