92 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #ourText {
 | |
|     top:0;
 | |
|     bottom: 4em;
 | |
|     resize: none;
 | |
|     padding: 1rem;
 | |
|     position: absolute;
 | |
| }
 | |
| #loadFile {
 | |
|     bottom: 0em;
 | |
|     position: absolute;
 | |
|     left: 0em;
 | |
|     width: 15em;
 | |
|     height: 2em;
 | |
| }
 | |
| 
 | |
| body {
 | |
|     background-color: #EEEEEE;
 | |
| }
 | |
| 
 | |
| #outer {
 | |
|     position: fixed;
 | |
|     left: 50%;
 | |
|     top: 44%;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| 
 | |
| #other {
 | |
|     position: fixed;
 | |
|     left: 50%;
 | |
|     top: 40%;
 | |
|     width: 100%;
 | |
| }
 | |
| #leftHolder, #right { top: 20%}
 | |
| 
 | |
| #leftHolder {
 | |
|     position: absolute;
 | |
|     right: 50%;
 | |
|     top:0;
 | |
| }
 | |
| #right {
 | |
|     position: absolute;
 | |
|     left: 50%;
 | |
|     top:0;
 | |
|     width: auto;
 | |
| }
 | |
| #right::first-letter {
 | |
|     color: red;
 | |
| }
 | |
| 
 | |
| #outField, #marker {
 | |
|     position: absolute;
 | |
|     font-size: 250%;
 | |
| }
 | |
| #outField {
 | |
|     bottom:50%;
 | |
| }
 | |
| 
 | |
| #marker {
 | |
|     top: 50%;
 | |
| }
 | |
| 
 | |
| #help {
 | |
|     position: fixed;
 | |
|     right: -1.5em;
 | |
|     top: -1.5em;
 | |
|     padding: 2em 2em .15em .15em;
 | |
|     border-radius: 1em;
 | |
|     box-shadow: 0px 0px 5px  #888888 inset;
 | |
| }
 | |
| 
 | |
| #controls {
 | |
|     position: fixed;
 | |
|     right: .5em;
 | |
|     bottom: .5em;
 | |
|     width: auto;
 | |
| }
 | |
| #controls * {
 | |
|     display: block;
 | |
| }
 | |
| 
 | |
| button {
 | |
|     width: 15em;
 | |
|     height: 2em;
 | |
| }
 | |
| #wrap {
 | |
|     position: fixed;
 | |
|     left: 0;
 | |
|     top: 10px;
 | |
|     bottom: 10px;
 | |
| 
 | |
| } |