 7dcb6f66da
			
		
	
	7dcb6f66da
	
	
	
		
			
			* [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets * Landing Page Updates * Markdown updates, colors coming later * Remove testing theme from FF1 * Color updates for markdown styles * Updates to generated pages, so many updates * [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets * Landing Page Updates * Markdown updates, colors coming later * Remove testing theme from FF1 * Color updates for markdown styles * Updates to generated pages, so many updates * Seed download page improvements * Add styles to weighted-settings page * Minor adjustments to styles * Revert base theme to grass * Add more items to ArchipIDLE * [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets * Landing Page Updates * Markdown updates, colors coming later * Remove testing theme from FF1 * Color updates for markdown styles * Updates to generated pages, so many updates * Seed download page improvements * [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets * Landing Page Updates * Markdown updates, colors coming later * Remove testing theme from FF1 * Color updates for markdown styles * Updates to generated pages, so many updates * Add styles to weighted-settings page * Minor adjustments to styles * Revert base theme to grass * Add more items to ArchipIDLE * Improve Archipidle item name * [WebHost] Update background images, waiting on jungle.png, added partyTime theme * [WebHost] Fix tab ordering on landing page, remove islands on screen scale, fix tutorial page width scaling * [WebHost] Final touches to WebHost * Improve get_world_theme function, add partyTime theme to ArchipIDLE WebWorld * Remove sending_visible from AutoWorld * AP Ocarina of Time Client (#352) * Core: update jinja (#351) * some typing and cleaning, mostly in Fill.py (#349) * some typing and cleaning, mostly in Fill.py * address missing Option types * resolve a few TODOs discussed in pull request * SM: Optimize a bit (#350) * SM: Optimize a bit * SM: init bosses only once * New World Order (#355) * Core: update jinja * SM: Optimize a bit * AutoWorld: import worlds in alphabetical order, to be predictable rather than arbitrary Co-authored-by: Hussein Farran <hmfarran@gmail.com> * Remove references to Z5Client in English OoT setup guide * Prevent markdown code blocks from overflowing their container Co-authored-by: espeon65536 <81029175+espeon65536@users.noreply.github.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com> Co-authored-by: Doug Hoskisson <beauxq@users.noreply.github.com> Co-authored-by: Hussein Farran <hmfarran@gmail.com>
		
			
				
	
	
		
			169 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| html{
 | |
|     background-image: url('../static/backgrounds/grass.png');
 | |
|     background-repeat: repeat;
 | |
|     background-size: 650px 650px;
 | |
| }
 | |
| 
 | |
| #player-settings{
 | |
|     max-width: 1000px;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     background-color: rgba(0, 0, 0, 0.15);
 | |
|     border-radius: 8px;
 | |
|     padding: 1rem;
 | |
|     color: #eeffeb;
 | |
| }
 | |
| 
 | |
| #player-settings #player-settings-button-row{
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
|     justify-content: space-between;
 | |
|     margin-top: 15px;
 | |
| }
 | |
| 
 | |
| #player-settings code{
 | |
|     background-color: #d9cd8e;
 | |
|     border-radius: 4px;
 | |
|     padding-left: 0.25rem;
 | |
|     padding-right: 0.25rem;
 | |
|     color: #000000;
 | |
| }
 | |
| 
 | |
| #player-settings #user-message{
 | |
|     display: none;
 | |
|     width: calc(100% - 8px);
 | |
|     background-color: #ffe86b;
 | |
|     border-radius: 4px;
 | |
|     color: #000000;
 | |
|     padding: 4px;
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| #player-settings #user-message.visible{
 | |
|     display: block;
 | |
|     cursor: pointer;
 | |
| }
 | |
| 
 | |
| #player-settings h1{
 | |
|     font-size: 2.5rem;
 | |
|     font-weight: normal;
 | |
|     width: 100%;
 | |
|     margin-bottom: 0.5rem;
 | |
|     color: #ffffff;
 | |
|     text-shadow: 1px 1px 4px #000000;
 | |
| }
 | |
| 
 | |
| #player-settings h2{
 | |
|     font-size: 40px;
 | |
|     font-weight: normal;
 | |
|     width: 100%;
 | |
|     margin-bottom: 0.5rem;
 | |
|     color: #ffe993;
 | |
|     text-transform: lowercase;
 | |
|     text-shadow: 1px 1px 2px #000000;
 | |
| }
 | |
| 
 | |
| #player-settings h3, #player-settings h4, #player-settings h5, #player-settings h6{
 | |
|     color: #ffffff;
 | |
|     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
 | |
| }
 | |
| 
 | |
| #player-settings a{
 | |
|     color: #ffef00;
 | |
| }
 | |
| 
 | |
| #player-settings input:not([type]){
 | |
|     border: 1px solid #000000;
 | |
|     padding: 3px;
 | |
|     border-radius: 3px;
 | |
|     min-width: 150px;
 | |
| }
 | |
| 
 | |
| #player-settings input:not([type]):focus{
 | |
|     border: 1px solid #ffffff;
 | |
| }
 | |
| 
 | |
| #player-settings select{
 | |
|     border: 1px solid #000000;
 | |
|     padding: 3px;
 | |
|     border-radius: 3px;
 | |
|     min-width: 150px;
 | |
|     background-color: #ffffff;
 | |
| }
 | |
| 
 | |
| #player-settings #game-options, #player-settings #rom-options{
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
| }
 | |
| 
 | |
| #player-settings .left, #player-settings .right{
 | |
|     flex-grow: 1;
 | |
| }
 | |
| 
 | |
| #player-settings .left{
 | |
|     margin-right: 10px;
 | |
| }
 | |
| 
 | |
| #player-settings .right{
 | |
|     margin-left: 10px;
 | |
| }
 | |
| 
 | |
| #player-settings table{
 | |
|     margin-bottom: 30px;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| #player-settings table .select-container{
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
| }
 | |
| 
 | |
| #player-settings table .select-container select{
 | |
|     min-width: 200px;
 | |
|     flex-grow: 1;
 | |
| }
 | |
| 
 | |
| #player-settings table .range-container{
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
| }
 | |
| 
 | |
| #player-settings table .range-container input[type=range]{
 | |
|     flex-grow: 1;
 | |
| }
 | |
| 
 | |
| #player-settings table .range-value{
 | |
|     min-width: 20px;
 | |
|     margin-left: 0.25rem;
 | |
| }
 | |
| 
 | |
| #player-settings table label{
 | |
|     display: block;
 | |
|     min-width: 200px;
 | |
|     margin-right: 4px;
 | |
|     cursor: default;
 | |
| }
 | |
| 
 | |
| #player-settings th, #player-settings td{
 | |
|     border: none;
 | |
|     padding: 3px;
 | |
|     font-size: 17px;
 | |
|     vertical-align: middle;
 | |
| }
 | |
| 
 | |
| @media all and (max-width: 1000px), all and (orientation: portrait){
 | |
|     #player-settings #game-options{
 | |
|         justify-content: flex-start;
 | |
|         flex-wrap: wrap;
 | |
|     }
 | |
| 
 | |
|     #player-settings .left, #player-settings .right{
 | |
|         flex-grow: unset;
 | |
|     }
 | |
| 
 | |
|     #game-options table label{
 | |
|         display: block;
 | |
|         min-width: 200px;
 | |
|     }
 | |
| }
 |