53 lines
		
	
	
		
			1016 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1016 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| p#tooltipText {
 | |
|     /* /* padding: 20px;  */
 | |
|     width: 200px;
 | |
|     height: 150px;
 | |
| }
 | |
| 
 | |
| label, input, select, textarea {
 | |
|     display: block;
 | |
| }
 | |
| 
 | |
| div#tooltip {
 | |
|     border-radius: 15px;
 | |
|     padding-left: 20px;
 | |
|     padding-right: 20px;
 | |
|     padding-bottom: 20px;
 | |
|     margin-top: 20px;
 | |
|     border: 2px solid rgba(155, 165, 160, 0.507);
 | |
|     width: 350px;
 | |
|     /* width: 70%; */
 | |
|     /* background-color: rgb(68, 158, 116); */
 | |
|     min-height: 400px;
 | |
| }
 | |
| 
 | |
| .collapsible {
 | |
|     /*background-color: rgba(155, 165, 160, 0.507);*/
 | |
|     color: rgb(44, 44, 44);
 | |
|     cursor: pointer;
 | |
|     padding: 5px;
 | |
|     width: 100%;
 | |
|     /*border: none;*/
 | |
|     /*outline: none;*/
 | |
|     /*max-height: 0;*/
 | |
|     /*overflow: hidden;*/
 | |
|     /*transition: max-height 0.2s ease-out;*/
 | |
| }
 | |
| 
 | |
| /*.active, .collapsibleActive:hover {*/
 | |
| /*    background-color: rgb(85, 85, 85);*/
 | |
| /*}*/
 | |
| 
 | |
| .collapsibleData {
 | |
|     padding: 0 18px;
 | |
| 
 | |
|     background-color: #f1f1f1;
 | |
| }
 | |
| 
 | |
| .fixed {
 | |
|     position: fixed;
 | |
|     /*top: 50%;*/
 | |
|     /*left: 50%;*/
 | |
|     margin-top: 100px;
 | |
|     margin-left: 950px;
 | |
| } |