This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/css/settings.css
Mark Cheret 3321070f7e footnotes WordPress Plugin first alpha release
- Basic functionality is available
- Tested against WordPress 3.9.1

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@917799 b8457f37-d9ea-0310-8a92-e5e31aec5664
2014-05-20 11:23:45 +00:00

60 lines
1.2 KiB
CSS
Executable file

/**
* Created by Stefan on 15.05.14.
*/
/* overwrite some styling for labels */
label {
min-width: 160px !important;
}
/* overwrite some styling for inputs [type=text] and select-boxes */
input[type=text], select {
padding-left: 8px !important;
padding-right: 8px !important;
margin-left: 12px !important;
}
a.footnote_plugin {
text-decoration: underline;
cursor: pointer;
color: #202020;
}
/* settings container */
.footnote_plugin_container {
display: block !important;
width: 100% !important;
padding-bottom: 18px !important;
}
/* setting with 25% width */
.footnote_plugin_25 {
width: 24% !important;
}
/* setting with half width */
.footnote_plugin_50 {
width: 49% !important;
}
/* setting with 75% width */
.footnote_plugin_75 {
width: 74% !important;
}
/* setting with full width */
.footnote_plugin_100 {
width: 99% !important;
}
/* container for the box holding the placeholder tags at the end */
.footnote_placeholder_box_container {
text-align: center;
width: auto;
display: inline-block;
}
/* highlight the placeholders */
span.footnote_highlight_placeholder {
font-weight: bold;
padding-left: 8px;
padding-right: 8px;
}