You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			26 lines
		
	
	
		
			456 B
		
	
	
	
		
			CSS
		
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			456 B
		
	
	
	
		
			CSS
		
	
| 
											12 years ago
										 | input[type=text], textarea { | ||
|  |   position: relative; | ||
|  |   display: inline-block; | ||
|  |   padding: 7px; | ||
|  |   border: 2px solid #7fd0ed; | ||
|  |   border-radius: 4px; | ||
|  |   background-color: #fafafa; | ||
|  |   color: #333333; | ||
|  | } | ||
|  | 
 | ||
|  | 
 | ||
|  | input[type=text]:focus { | ||
|  |   outline: 2px dashed #acdbf5; | ||
|  |   outline-offset: 2px; | ||
|  | } | ||
|  | 
 | ||
|  | textarea { | ||
|  |   resize: vertical; | ||
|  |   width: 100%; | ||
|  |   min-height: 100px; | ||
|  |   box-sizing: border-box; | ||
|  |   font-family: Helvetica, Arial, sans-serif; | ||
|  |   font-size: 14px; | ||
|  |   line-height: 18px; | ||
|  | } |