Files
esengine/packages/editor-app/src/styles/StartupPage.css

163 lines
2.4 KiB
CSS
Raw Normal View History

.startup-page {
display: flex;
flex-direction: column;
2025-10-15 18:24:13 +08:00
width: 100%;
height: 100vh;
2025-10-15 18:24:13 +08:00
background-color: #1e1e1e;
color: #cccccc;
}
.startup-header {
2025-10-15 18:24:13 +08:00
padding: 60px 40px 40px;
}
.startup-title {
2025-10-15 18:24:13 +08:00
font-size: 32px;
font-weight: 300;
color: #ffffff;
margin: 0 0 8px 0;
letter-spacing: -0.5px;
}
.startup-subtitle {
2025-10-15 18:24:13 +08:00
font-size: 14px;
font-weight: 400;
color: #858585;
margin: 0;
}
.startup-content {
flex: 1;
display: flex;
2025-10-15 18:24:13 +08:00
gap: 60px;
padding: 0 40px;
overflow: auto;
}
.startup-actions {
display: flex;
2025-10-15 18:24:13 +08:00
flex-direction: column;
gap: 12px;
min-width: 280px;
}
.startup-action-btn {
display: flex;
align-items: center;
2025-10-15 18:24:13 +08:00
gap: 12px;
padding: 12px 16px;
background-color: #2d2d30;
border: 1px solid #3e3e42;
border-radius: 2px;
color: #cccccc;
font-size: 13px;
cursor: pointer;
2025-10-15 18:24:13 +08:00
transition: all 0.15s;
text-align: left;
}
.startup-action-btn:hover {
2025-10-15 18:24:13 +08:00
background-color: #37373d;
border-color: #007acc;
}
.startup-action-btn.primary {
2025-10-15 18:24:13 +08:00
background-color: #0e639c;
border-color: #0e639c;
color: #ffffff;
}
.startup-action-btn.primary:hover {
2025-10-15 18:24:13 +08:00
background-color: #1177bb;
border-color: #1177bb;
}
.btn-icon {
2025-10-15 18:24:13 +08:00
width: 20px;
height: 20px;
flex-shrink: 0;
}
.startup-recent {
2025-10-15 18:24:13 +08:00
flex: 1;
max-width: 600px;
}
.recent-title {
2025-10-15 18:24:13 +08:00
font-size: 13px;
font-weight: 600;
2025-10-15 18:24:13 +08:00
color: #cccccc;
margin: 0 0 16px 0;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.recent-empty {
2025-10-15 18:24:13 +08:00
font-size: 13px;
color: #858585;
margin: 0;
}
.recent-list {
list-style: none;
padding: 0;
margin: 0;
2025-10-15 18:24:13 +08:00
display: flex;
flex-direction: column;
gap: 1px;
}
.recent-item {
display: flex;
align-items: center;
2025-10-15 18:24:13 +08:00
gap: 12px;
padding: 10px 12px;
background-color: transparent;
border-radius: 2px;
cursor: pointer;
2025-10-15 18:24:13 +08:00
transition: background-color 0.15s;
}
2025-10-15 18:24:13 +08:00
.recent-item:hover {
background-color: #2a2d2e;
}
.recent-icon {
2025-10-15 18:24:13 +08:00
width: 16px;
height: 16px;
color: #858585;
flex-shrink: 0;
}
.recent-info {
flex: 1;
min-width: 0;
}
.recent-name {
2025-10-15 18:24:13 +08:00
font-size: 13px;
color: #cccccc;
margin-bottom: 2px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.recent-path {
2025-10-15 18:24:13 +08:00
font-size: 11px;
color: #6e6e6e;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.startup-footer {
2025-10-15 18:24:13 +08:00
padding: 20px 40px;
border-top: 1px solid #2d2d30;
}
.startup-version {
2025-10-15 18:24:13 +08:00
font-size: 11px;
color: #6e6e6e;
}