summaryrefslogtreecommitdiff
path: root/src/scss/blog.scss
blob: 6fad483c2e6cb42faa6ff2a82f47530ef8538593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import "./variables";
@import "./mixins";

#blog {
	padding-bottom: $inner-gap;
}

#post {
	max-width: 100%;

	pre {
		code span {
			margin-left: 0 !important;
		}

		overflow-x: scroll;
		max-width: $page-width - $outer-gap * 2 - $inner-gap;
	}

	img {
		margin: $inner-gap;
		max-width: 100%;
		width: 400px;
	}
}

#comments {
	> span {
		margin-bottom: 10px;
	}

	.comment {
		.header {
			display: inline-block;;
		}
		.date {
			font-size: 70%;
			display: inline-block;;
		}
		.content {
			margin-top: 0;
		}
	}

	form, /* ie4 */
	form#new_comment {
		margin-left: $inner-gap;
		max-width: 400px;
		padding-right: $inner-gap;

		input.hidden {
			display: none;
		}

		input#author,
		input#content {
			display: block;
			width: 100%;
		}

		input {
			@include border-radius($inner-radius);
			display: block;
			margin: 10px 0;
			padding: 5px;
			border: 2px solid $white-alt;
			background: $black-alt;
			color: $white;

			&:hover,
			&:focus,
			&:active {
				outline: none;
				border: 2px solid $white;
			}
		}
	}
}