36 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base_conservancy.html" %}
 | |
| {% block category %}FOSSY{% endblock %}
 | |
| {% block head %}
 | |
|   {{ block.super }}
 | |
|   <style>
 | |
|    label { display: block; }
 | |
|    input[type=text], input[type=email], input[type=date], select {
 | |
|      padding: 0.25rem;
 | |
|    }
 | |
|    input[type=checkbox] { width: auto; }
 | |
|    span[class=helptext] {
 | |
|      display: block;
 | |
|      font-size: 12px;
 | |
|      font-style: italic;
 | |
|      color: #666;
 | |
|    }
 | |
|    textarea {
 | |
|      width: 100%;
 | |
|      max-width: 45rem;
 | |
|      height: 8rem;
 | |
|      padding: 0.25rem;
 | |
|    }
 | |
|    #id_title {
 | |
|      width: 100%;
 | |
|      max-width: 25rem;
 | |
|    }
 | |
|    .helptext {
 | |
|      max-width: 35rem;
 | |
|    }
 | |
|    .errorlist {
 | |
|      margin: 1rem 0 0.25rem;
 | |
|      color: #e7040f;
 | |
|      white-space: pre-wrap;
 | |
|    }
 | |
|   </style>
 | |
| {% endblock %}
 |