Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*****
- /
- / Scroll bar removal
- /
- *****/
- .scroll {
- overflow: visible;
- height: auto;
- }
- /*****
- /
- / Optimized fixed positioning and scroll
- / Affects life panel, tabs, tabs content and game title
- /
- *****/
- /* */
- h1 {
- position: absolute;
- top: 12px;
- left: 970px;
- z-index: 1;
- font-size: large;
- font-weight: 600;
- }
- .w3-white {
- position: fixed;
- }
- .w3-white:nth-child(1) {
- }
- .w3-white:nth-child(2) {
- margin-left: 315px;
- }
- .w3-white:nth-child(3) {
- margin-top: 55px;
- margin-left: 315px;
- overflow-y: auto;
- height: calc(100vh - 71px);
- }
- /*****
- /
- / Check box adjustments (ID dependent)
- /
- *****/
- #row\ Book .w3-circle,
- #row\ Dumbbells .w3-circle,
- #row\ Personal\ squire .w3-circle,
- #row\ Steel\ longsword .w3-circle,
- #row\ Butler .w3-circle,
- #row\ Sapphire\ charm .w3-circle,
- #row\ Study\ desk .w3-circle,
- #row\ Library .w3-circle {
- border-radius: 0;
- }
- /*****
- /
- / Shop button appearance and hover state
- /
- *****/
- .item-button {
- border: 1px solid rgba(0,0,0,0.15);
- border-radius: 4px;
- transition: all 0.3s ease-out;
- box-shadow:
- inset 0 1px 0 rgba(255,255,255,0.5),
- 0 2px 2px rgba(0,0,0,0.2),
- 0 0 4px 1px rgba(0,0,0,0.1);
- }
- .item-button:hover {
- background-color: #ddd;
- }
- /*****
- /
- / Dark mode adjustments
- /
- *****/
- body.w3-light-gray {
- background-color: #222;
- color: #ddd;
- }
- div.w3-white {
- background-color: #333;
- color: #ddd;
- }
- .item-button {
- background-color: #666;
- color: #ddd;
- }
- .headerRow {
- background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
- background-size: 3px 3px;
- }
- .item-button:hover {
- background-color: #888;
- }
- /*****
- /
- / Experimental:
- / Progress bar visual changes and animations
- /
- *****/
- .progress-bar, .progress-fill {
- border-radius: 4px;
- text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
- }
- .progress-bar.current-pb {
- background: rgb(155, 100, 0);
- }
- .progress-fill {
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-size: 40px 40px;
- }
- @keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
- }
- .progress-fill.current {
- animation: progress-bar-stripes 2s linear infinite;
- }
Advertisement
Add Comment
Please, Sign In to add comment