93 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import "colors-main.scss";
 | |
| @import "checkbox.scss";
 | |
| 
 | |
| textarea,
 | |
| input[type=text] {
 | |
|   background: #ffffff;
 | |
|   border: 1px solid rgba(50, 50, 93, .1);
 | |
|   border-radius: 3px;
 | |
|   color: #525f7f;
 | |
| }
 | |
| 
 | |
| input[type=text]::placeholder {
 | |
|   color: #cacaca;
 | |
| }
 | |
| 
 | |
| textarea::placeholder {
 | |
|   color: $gray-6;
 | |
|   font-size: 20px;
 | |
|   display: flex;
 | |
|   line-height: 110px;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| textarea {
 | |
|   display: inline-block;
 | |
|   font-family: 'Source Sans Pro', sans-serif;
 | |
|   padding: 8px;
 | |
|   outline: none;
 | |
|   overflow: auto;
 | |
|   min-height: 130px;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .commento-red-border {
 | |
|   border: 1px solid $red-7;
 | |
| }
 | |
| 
 | |
| .commento-textarea-container {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| 
 | |
|   .commento-submit-button {
 | |
|     transform: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .commento-blurred-textarea {
 | |
|   list-style: none;
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
|   justify-content: space-between;
 | |
|   will-change: transform;
 | |
| }
 | |
| 
 | |
| .commento-submit-button {
 | |
|   float: right;
 | |
|   background: $blue-8;
 | |
|   text-transform: uppercase;
 | |
|   font-size: 12px;
 | |
|   margin-top: 10px;
 | |
| }
 | |
| 
 | |
| .commento-button-margin {
 | |
|   padding-bottom: 60px;
 | |
| }
 | |
| 
 | |
| .commento-anonymous-checkbox-container {
 | |
|   float: right;
 | |
|   margin: 20px 16px;
 | |
| 
 | |
|   input[type="checkbox"] + label {
 | |
|     padding-left: 24px;
 | |
|     font-size: 12px;
 | |
|     text-transform: uppercase;
 | |
|     font-weight: bold;
 | |
|     color: $gray-7;
 | |
|   }
 | |
| 
 | |
|   input[type="checkbox"] + label:before {
 | |
|     margin-top: 1px;
 | |
|   }
 | |
| 
 | |
|   input[type="checkbox"] + label:after {
 | |
|     margin-top: -1px;
 | |
|   }
 | |
| }
 |