Sha256: ae043fa135f0c884cef34ab76f82a0f92bb70d00063a595a6e53a6945020001f

Contents?: true

Size: 909 Bytes

Versions: 4

Compression:

Stored size: 909 Bytes

Contents

body {
	margin: 0;
}

.container {
	padding: 0 10%;

	@media screen and (max-width: $screen_small) {
		padding: 0 24px;
	}
}

.mobile {
	display: none;

	@media screen and (max-width: $screen_small) {
		display: block;
	}
}


.post-index-box {
	display: flex;
	justify-content: space-around;
	align-items: stretch;

	& .box {
		width: 70%;
	}

	@media screen and (max-width: $screen_small) {
		display: block;
		& .box {
			width: 100%;
			margin-bottom: 48px;
		}
	}
}

.post-index {
	width: 30%;
	margin: 12px;
	padding: 12px;
	border: 1px solid red;
	border: 1px solid #ddd;
	border-radius: 5px;

	& h5 {
		margin: 0;
		text-align: center;
	}

	& .post-index-entry {
		color: #999;
	}

	& .post-index-entry p {
		color: $color_1;
		width: 100%;
		margin-bottom: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	@media screen and (max-width: $screen_small) {
		width: 100%;
	}
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
eli-theme-0.1.4 _sass/structure/structure.scss
eli-theme-0.1.3 _sass/structure/structure.scss
eli-theme-0.1.2 _sass/structure/structure.scss
eli-theme-0.1.1 _sass/structure/structure.scss