2019-05-15 05:56:59 +02:00
|
|
|
/**
|
|
|
|
* Styling for the Augmentations UI. This is the page that displays all of the
|
|
|
|
* player's owned and purchased Augmentations and Source-Files. It also allows
|
|
|
|
* the player to install Augmentations
|
|
|
|
*/
|
|
|
|
@import "theme";
|
|
|
|
|
|
|
|
#augmentations-container {
|
2021-09-05 01:09:30 +02:00
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
2019-05-15 05:56:59 +02:00
|
|
|
}
|
|
|
|
|
2019-05-15 09:15:07 +02:00
|
|
|
#augmentations-content {
|
2021-09-05 01:09:30 +02:00
|
|
|
> p {
|
|
|
|
font-size: $defaultFontSize * 0.875;
|
|
|
|
width: 70%;
|
|
|
|
}
|
2019-05-15 09:15:07 +02:00
|
|
|
}
|
|
|
|
|
2019-05-15 05:56:59 +02:00
|
|
|
.augmentations-list {
|
2021-09-05 01:09:30 +02:00
|
|
|
button,
|
|
|
|
div {
|
|
|
|
color: var(--my-font-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-05-15 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
button {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
2019-05-15 05:56:59 +02:00
|
|
|
}
|