diff options
Diffstat (limited to 'sass/parts')
| -rw-r--r-- | sass/parts/_article.scss | 19 | 
1 files changed, 18 insertions, 1 deletions
| diff --git a/sass/parts/_article.scss b/sass/parts/_article.scss index 5754fd1..79553f4 100644 --- a/sass/parts/_article.scss +++ b/sass/parts/_article.scss @@ -35,7 +35,6 @@ article{  				margin-top: 0;  			}  		} -		  		p{  			margin-top: 10px;	  		} @@ -93,6 +92,24 @@ article{  			overflow-x: auto;  			@include border-radius(5px);  		} +		table{ +			background: $gray04; +			border: 1px solid $gray03; +			border-spacing: 0; +			margin-top: 10px; +			th{ +				background: $gray03; +				padding: 0 15px; +			} +			td{ +				text-align: center; +			} +			tr{ +				&:nth-of-type(2n){ +					background: #d5d5d5; +				} +			} +		}  		.caption{  			background: image-url('caption.png') 0 4px no-repeat;  			display: block; | 
