-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
62 lines (47 loc) · 1.82 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
/*
Theme Name: cornerstonechildtheme
Description: Child theme for the Cornerstone starter theme
Author: Stephen Mullen
Author URI: http: //www.thewirelessguy.co.uk
Template: cornerstone
Version: 1.0
*/
.alignleft {display: inline; float: left; margin-right: 1.625em;}
.alignright {display: inline; float: right; margin-left: 1.625em;}
.aligncenter {clear: both; display: block; margin-left: auto; margin-right: auto;}
.widget_nav_menu ul,.widget_recent_entries ul{list-style:none}
#content,.sidebar{margin-top: 1em;}
.entry-content ul,.widget_archive ul{
margin-left:2em;
}
.screen-reader-text{
left:-1000em;
position: absolute;
}
/* Pagination */
.pagination li {
display: inline-block; /* make page numbers visible on mobile devices */
}
/* Orbit Slider */
.orbit-container {
background: transparent;
height: auto !important; /* Change container height based on height of image */
}
.off-canvas-content{
box-shadow: none;
}
/* We use this media query to add styles to any device that supports media queries */
@media only screen { }
/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */
@media only screen and (min-width: 768px) {}
/* Used to alter styles for screens at least 1280px wide. */
@media only screen and (min-width: 1280px) {}
/* Used to alter styles for screens at least 1440px wide. */
@media only screen and (min-width: 1440px) {}
/* Apply styles to screens in landscape orientation */
@media only screen and (orientation: landscape) {}
/* Apply styles to screens in portrait orientation */
@media only screen and (orientation: portrait) {}
/* We also use Modernizr to add a .touch class to the body when applicable */
/* You can prepend this class to anything and it will style only for touch devices */
.touch .your-element {}