Compare commits
	
		
			2 Commits
		
	
	
		
			4753b0b421
			...
			026eedfb01
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					026eedfb01 | ||
| 
						 | 
					772440ed85 | 
@@ -6,7 +6,6 @@ body {
 | 
				
			|||||||
    margin: 0;
 | 
					    margin: 0;
 | 
				
			||||||
    height: 100vh;
 | 
					    height: 100vh;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    padding: 5em;
 | 
					 | 
				
			||||||
    padding-left: auto;
 | 
					    padding-left: auto;
 | 
				
			||||||
    padding-right: auto;
 | 
					    padding-right: auto;
 | 
				
			||||||
    background-color: pink;
 | 
					    background-color: pink;
 | 
				
			||||||
@@ -49,6 +48,12 @@ body {
 | 
				
			|||||||
    color: black;
 | 
					    color: black;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@media (min-height: 700px){
 | 
				
			||||||
 | 
					    .search-grid {
 | 
				
			||||||
 | 
					        margin-top: 0;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.search-logo img {
 | 
					.search-logo img {
 | 
				
			||||||
    height: 100%;
 | 
					    height: 100%;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,13 +11,26 @@
 | 
				
			|||||||
    <form class="search-grid" action="https://duckduckgo.com/">
 | 
					    <form class="search-grid" action="https://duckduckgo.com/">
 | 
				
			||||||
        <div class="search-logo">
 | 
					        <div class="search-logo">
 | 
				
			||||||
            <img als="girl_juice" src="assets/girl_juice.png" />
 | 
					            <img als="girl_juice" src="assets/girl_juice.png" />
 | 
				
			||||||
            <h2>GirlJuice.Inject()</h2>
 | 
					            <h2 class="phrases">GirlJuice.Inject()</h2>
 | 
				
			||||||
            <img als="girl_juice" src="assets/girl_juice.png" />
 | 
					            <img als="girl_juice" src="assets/girl_juice.png" />
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <input name="q" type="text" class="grid-item" class="search" placeholder="Search DuckDuckGo :3 :3 :3" />
 | 
					        <input name="q" type="text" class="grid-item" class="search" placeholder="Search DuckDuckGo :3 :3 :3" />
 | 
				
			||||||
    </form>
 | 
					    </form>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <script>
 | 
					    <script>
 | 
				
			||||||
 | 
					        const phrases = [
 | 
				
			||||||
 | 
					            "GirlJuice.Inject()",
 | 
				
			||||||
 | 
					            "Child.CrowdKill()",
 | 
				
			||||||
 | 
					            "CopCar.Burn()",
 | 
				
			||||||
 | 
					            "You.Cute = true",
 | 
				
			||||||
 | 
					            "You.Gay = true",
 | 
				
			||||||
 | 
					            "Nazi.Punch()",
 | 
				
			||||||
 | 
					        ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Array.from(document.querySelectorAll(".phrases")).forEach(element => {
 | 
				
			||||||
 | 
					            element.textContent = phrases[Math.floor(Math.random()*phrases.length)];
 | 
				
			||||||
 | 
					        })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        document.addEventListener('DOMContentLoaded', function() {
 | 
					        document.addEventListener('DOMContentLoaded', function() {
 | 
				
			||||||
            const marqueeElement = document.body;
 | 
					            const marqueeElement = document.body;
 | 
				
			||||||
            let position = 0;
 | 
					            let position = 0;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user