78 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @charset "UTF-8";
 | |
| 
 | |
| body {
 | |
|     background-color: #f5f5f5;
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| .header {
 | |
|     width: 100%;
 | |
|     height: 50px;
 | |
|     display: flex;
 | |
|     position: fixed;
 | |
|     top: 0;
 | |
|     left: 0;
 | |
|     background-color: #ffffff;
 | |
|     border-bottom: 1px solid #e1e1e1;
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| .header .box {
 | |
|     width: 960px;
 | |
|     height: 100%;
 | |
|     margin: 0 auto;
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
| }
 | |
| 
 | |
| .header .box a {
 | |
|     display: inline-block;
 | |
|     text-decoration: none;
 | |
|     color: #000000;
 | |
|     font-size: 16px;
 | |
|     padding: 10px;
 | |
|     border-radius: 5px;
 | |
|     margin-right: 10px;
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| .container {
 | |
|     width: 960px;
 | |
|     height: calc(100vh - 80px);
 | |
|     margin: 60px auto 0;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|     flex-direction: column;
 | |
|     background-color: #ffffff;
 | |
|     padding: 20px;
 | |
|     overflow-y: auto;
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| .table {
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| }
 | |
| 
 | |
| .table .row {
 | |
|     display: block;
 | |
|     margin: 0;
 | |
|     padding: 8px 0;
 | |
|     border-bottom: 1px dashed #c0c0c0;
 | |
|     font-size: 14px;
 | |
|     text-decoration: none;
 | |
|     color: #333333;
 | |
|     letter-spacing: 0.05em;
 | |
| }
 | |
| 
 | |
| .table a.row {
 | |
|     color: #0084ff;
 | |
| }
 | |
| 
 | |
| .table a.row:hover {
 | |
|     text-decoration: underline;
 | |
| }
 |