-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (76 loc) · 2.19 KB
/
style.css
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
/*
Theme Name: ArduPilot Theme 2
Theme URI: https://github.com/hamishwillee/ardupilot_theme_2
Author:Hamish Willee
Version:1.0.0
Author URI: http://www.ardupilot.com/
Description: The ArduPilot Theme 2 is a customized theme based on the WordPress default theme twentyfourteen (http://wordpress.org/extend/themes/twentyfourteen). It differs in that the theme is centred, the top menu is left-aligned, and it has been changed to a light theme.
License URI: http://creativecommons.org/licenses/by-sa/3.0/
Template: twentyfourteen
Tags: light
Text Domain: ardupilotheme
*/
/* Add my styles below. Note that the parent styles are enqueued in the functions php */
/* Centre the theme */
.site {
margin: 0 auto;
}
/* Make the wiki content area a little wider */
/*
.site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content {
max-width: 900px !important;
}
*/
/* turn off wiki TOC */
#wikinav {
display:none;
}
/*Make content area full width*/
.site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content {
max-width: 800px;
}
/* Set the content area high so there is space for the breadcrump */
.content-area, .content-sidebar {
padding-top: 5px;
}
/* Add some space after the breadcrumb */
.breadcrumbs{
margin-bottom: 20px;
}
/* HIde the next prev buttons */
nav.navigation.post-navigation {
display:none;
}
.entry-title {
text-transform:none;
font-size:40px;
font-weight:inherit;
}
/* Shrink the breadcrumb size */
.breadcrumbs {
font-size:0.9em;
}
/* Styling for the warning text on a common page */
.warning-common-page {
font-size: small;
color: #993300;
}
/* Highlight searchWP terms */
.searchwp-highlight {
background-color: yellow;
}
/* Fixes to left-align menu - required because last item is overflowing
on narrow screens */
.primary-navigation {
float:none
}
@media screen and (min-width: 783px) {
.site-title {
min-width: 162px;
}
}
@media screen and (min-width: 1082px) {
.site-title {
min-width: 200px;
}
}