-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (116 loc) · 2.83 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (116 loc) · 2.83 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
Theme Name: Skinny
Theme URI: https://rundiz.com
Author: Vee W.
Author URI: https://rundiz.com
Description: The most basic functional theme that passed Theme Check and included recommended CSS classes.
Version: 0.1
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: skinny
Tags: blog, two-columns, right-sidebar
Domain Path: /languages/
This file is required by WordPress theme system. ( https://developer.wordpress.org/themes/basics/template-files/ )
*/
/*
.bypostauthor is recommended by Theme Check.
.gallery-caption is recommended by Theme Check.
.gallery-caption is generated by classic editor.
*/
.bypostauthor,
.gallery-caption {
display: block;
}
/*
3 alignments copied from https://codex.wordpress.org/CSS
*/
/*
.aligncenter is recommended by Theme Check.
.aligncenter is generated by classic editor.
*/
.aligncenter{
display: block;
margin: 5px auto;
}
/*
.alignleft is recommended by Theme Check.
.alignleft is generated by classic editor.
*/
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
/*
.alignright is recommended by Theme Check.
.alignright is generated by classic editor.
*/
.alignright {
float: right;
margin: 5px 0 20px 20px;
}
/*
.screen-reader-text is recommended by Theme Check.
copied from https://codex.wordpress.org/CSS
.screen-reader-text is generated by WordPress and use in many places such as pagination.
*/
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;/* Above WP toolbar. */
}
/*
.sticky is recommended by Theme Check.
*/
.sticky {
border-top: 5px solid #eeeec0;
position: relative;
}
/*
.wp-caption is recommended by Theme Check.
copied from https://codex.wordpress.org/CSS
.wp-caption is generated by classic editor.
*/
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%; /* Image does not overflow the content area */
padding: 5px 3px 10px;
text-align: center;
}
/*
.wp-caption-text is recommended by Theme Check.
copied from https://codex.wordpress.org/CSS
.wp-caption-text is generated by classic editor.
*/
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}