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.
		
		
		
		
		
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			527 B
		
	
	
	
		
			CSS
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			527 B
		
	
	
	
		
			CSS
		
	
input[type=text], textarea {
 | 
						|
  position: relative;
 | 
						|
  display: inline-block;
 | 
						|
  padding: 0.5em;
 | 
						|
  border: 2px solid #7fd0ed;
 | 
						|
  border-radius: 4px;
 | 
						|
  background-color: #fafafa;
 | 
						|
  color: #333333;
 | 
						|
}
 | 
						|
 | 
						|
input.invalid {
 | 
						|
  border-color: #ff3333;
 | 
						|
}
 | 
						|
 | 
						|
input[type=submit]:focus,
 | 
						|
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;
 | 
						|
}
 |