84 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #main {
 | |
|     border-radius: 10px;
 | |
|     background-color: #00000044;
 | |
| }
 | |
| 
 | |
| #base {
 | |
|     margin: 10px;
 | |
| }
 | |
| 
 | |
| .fullscale {
 | |
|     height: 100%;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| .colflex {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| }
 | |
| 
 | |
| .rowflex {
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
| }
 | |
| 
 | |
| .workspace {
 | |
|     margin: 10px;
 | |
|     border-radius: 8px;
 | |
|     background-color: #000000FF;
 | |
|     border-width: 1px;
 | |
|     border-color: #555555FF;
 | |
| }
 | |
| 
 | |
| .window {
 | |
|     width: 100px;
 | |
|     height: 80px;
 | |
|     background-color: #222222FF;
 | |
|     border-radius: 8px;
 | |
|     border-width: 1px;
 | |
|     border-color: #BCBCBCFF;
 | |
| }
 | |
| 
 | |
| .window_active {
 | |
|     width: 100px;
 | |
|     height: 80px;
 | |
|     background-color: #444444FF;
 | |
|     border-radius: 8px;
 | |
|     border-width: 1px;
 | |
|     border-color: #268BD2FF;
 | |
| }
 | |
| 
 | |
| .title {
 | |
|     width: 100%;
 | |
|     height: 21px;
 | |
|     margin-top: 4px;
 | |
|     margin-left: 4px;
 | |
|     margin-right: 4px;
 | |
|     margin-bottom: 2px;
 | |
|     color: #268bd2FF;
 | |
|     font-size: 16px;
 | |
|     font-family: "Cascadia Code PL:style=Bold:size=16";
 | |
| }
 | |
| 
 | |
| .content {
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     margin-left: 4px;
 | |
|     margin-right: 4px;
 | |
|     color: #999999FF;
 | |
|     vertical-align: top;
 | |
|     font-size: 14px;
 | |
|     font-family: "Cascadia Code PL:style=Bold:size=14";
 | |
|     word-wrap: break-word;
 | |
|     line-height: 12px;
 | |
| }
 | |
| 
 | |
| .number {
 | |
|     width: 20px;
 | |
|     height: 20px;
 | |
|     right: -14px;
 | |
|     top: -9px;
 | |
|     color: #FFFFFFFF;
 | |
|     font-size: 18px;
 | |
|     font-family: "Cascadia Code PL:style=Bold:size=18";
 | |
| }
 | 
