~canonical-sysadmins/wordpress/wp-theme-xubuntu-website

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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
	font-size: small;
	font-family: 'Open Sans', sans-serif !important;
	line-height: 1.5em;

	background-color: #fafafa;
	color: #3c3c3c;
}

/*  Elements
 *
 */

a {
	/* This imitates the hover style for editing clarity */
	color: #205dba;
	border-bottom: 1px solid #bccde6;
}

blockquote {
	/* Remove left margin (from WordPress) */
	margin: 0;
}
	blockquote p {
		/* Fix spacing issues */
		margin-top: 0;
	}

h2 {
	/* Imitate the style in the content area */
	border-top: 1px dotted #ccc;
	padding-top: 0.5em;
}


li { margin-bottom: 0.2em; list-style-position: outside; margin-left: 1.2em; }
	ul li {
		list-style-type: none;
		margin-left: 1em;
	}
		ul li:before {
			display: block;
			float: left;

			width: 0.7em;
			margin-left: -0.7em;
			margin-top: -0.12em;
			content: "›";
			font-weight: 300;
			font-size: 140%;
			color: #555;
		}
	ol li { list-style-type: decimal; margin-left: 1.6em; }
	ol, ul {
		/* Remove left margin (from WordPress) */
		padding-left: 0 !important;
	}

/*  Templates
 *
 */

/*  Proper padding for aligned images  */
div.mceTemp .alignright { padding-left: 20px; }
div.mceTemp .alignleft { padding-right: 20px; }
.aligncenter { margin: 0 auto !important; }

/*  Gallery styles, adapted for the editor */
dl.wp-caption dd.wp-caption-dd,
.gallery dd.wp-caption-text {
	text-align: center;
	color: #999;
	padding: 0;
	line-height: 1.3em;
}

dt.gallery-icon img {
	border-radius: 3px;
	box-shadow: 1px 1px 5px rgba( 0, 0, 0, 0.2 );
}

.wpview-type-gallery .gallery {
	/* Make sure the gallery in editor doesn't have scrollbars */
	overflow: visible !important;
}


/*  Responsive styles
 * 
 */

@media only screen and (max-width:1000px) {
	.alignright,
	.alignleft {
		max-width: 310px;
		height: auto;
	}

	.alignright img,
	.alignleft img {
		max-width: 300px;
		height: auto;
	}
}