Files
eveship.fit/app/page.module.css
Patric Stout 6e07e2311c chore: bump @eveshipfit/react to 2.1.0 (#26)
This also removes the need for the Debug component and we can no longer
consider this website pre-alpha.

* feat: loading fits from a Browser's LocalStorage
* feat: show name of fit next to the fit
* feat: ability to rename fits and save them in the browser
* feat: visually indicate the origin of a fit (browser, ESI, ..)
* feat: import/export current fit as EFT string
* feat: import of ESI JSON fits from clipboard
* feat: "Share Link" button to quickly share the current fit
* fix: name a new ship's name based on the ship type
* fix: rotate the radial menu icon back into an upright position
* fix: use proper icons for cargo-hold and drone-bay
* fix: sort the fits based on their name
* fix: selecting two filters in Hardware shows an empty list
2023-12-22 19:41:40 +00:00

68 lines
1.1 KiB
CSS

.main {
margin: 0 auto;
width: 1580px;
}
.content {
background-color: #111111;
border-radius: 25px;
color: #c5c5c5;
display: flex;
justify-content: flex-end;
margin-top: 10px;
padding: 20px;
position: relative;
}
.selection {
flex: 1;
margin-top: 10px;
overflow-x: hidden;
padding-right: 10px;
}
.selectionHeader {
display: flex;
}
.selectionHeader > div {
background-color: #4f4f4f;
cursor: pointer;
flex: 1;
line-height: 24px;
text-align: center;
}
.selectionHeader > div:hover {
background-color: #6c6c6c;
}
.selectionHeader > div:first-child {
border-bottom-left-radius: 25px;
margin-right: 5px;
}
.selectionHeader > div:last-child {
border-bottom-right-radius: 25px;
margin-left: 5px;
}
.selectionContent {
height: 644px;
margin-bottom: 10px;
}
.collapsed {
display: none;
}
.selectionHeader > div.selected {
background-color: #7a7a7a;
}
.fit {
height: 730px;
width: 730px;
}
.statistics {
margin-top: 10px;
position: relative;
}
.statistics > div:first-child {
margin-bottom: 10px;
}