| 1 |
/* Theme Switcha - Settings Styles */ |
| 2 |
|
| 3 |
.theme-switcha-version { color: #c7c7c7; font-size: 90%; } |
| 4 |
|
| 5 |
.wp-admin h2 { margin-top: 30px; } |
| 6 |
|
| 7 |
.wp-admin .plugin-wrap { width: 100%; overflow: hidden; } |
| 8 |
.wp-admin .plugin-intro { float: left; width: 48%; } |
| 9 |
.wp-admin .plugin-intro p:first-child { margin-top: 0; } |
| 10 |
.wp-admin .plugin-intro p:last-child { margin-bottom: 0; } |
| 11 |
.wp-admin .book-blurb { float: right; width: 48%; } |
| 12 |
.wp-admin .book-blurb a { width: 240px; height: 60px; display: block; opacity: 0.9; } |
| 13 |
.wp-admin .book-blurb a:hover { opacity: 1.0; } |
| 14 |
.wp-admin .book-blurb img { width: 240px; height: 60px; display: block; } |
| 15 |
|
| 16 |
@media (max-width: 580px) { |
| 17 |
.wp-admin .plugin-intro, .wp-admin .book-blurb { float: none; width: 100%; } |
| 18 |
.wp-admin .book-blurb { margin: 20px 0 10px 0; } |
| 19 |
} |
| 20 |
|
| 21 |
.wp-admin .custom-label { display: block; color: #777; font-style: italic; font-size: 14px; line-height: 1.5; } |
| 22 |
|
| 23 |
.wp-admin .light-text { color: #777; font-size: 80%; } |
| 24 |
|
| 25 |
.wp-admin .inline-block { display: inline-block; } |
| 26 |
|
| 27 |
.wp-admin input[type="text"] { width: 55%; } |
| 28 |
.wp-admin textarea { width: 77%; } |
| 29 |
|
| 30 |
@media (max-width: 1000px) { |
| 31 |
.wp-admin input[type="text"] { width: 77%; } |
| 32 |
.wp-admin textarea { width: 88%; } |
| 33 |
} |
| 34 |
|
| 35 |
.ui-dialog .ui-dialog-titlebar { font-size: 16px; } |
| 36 |
.ui-dialog .ui-dialog-buttonpane, .ui-dialog .ui-dialog-titlebar, .ui-dialog .modal-dialog { text-align: center; } |
| 37 |
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; } |
| 38 |
.ui-dialog .ui-dialog-buttonpane .ui-button { margin: 0; } |
| 39 |
.ui-dialog .ui-dialog-buttonpane .ui-button:first-child { margin-right: 15px; } |
| 40 |
|
| 41 |
/* thumbnails */ |
| 42 |
|
| 43 |
.theme-switcha-thumbs { margin-top: 30px; } |
| 44 |
|
| 45 |
.theme-screenshot:link, .theme-screenshot:visited { |
| 46 |
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; |
| 47 |
position: relative; display: inline-block; width: 200px; height: auto; margin: 0 10px 10px 0; padding: 10px; |
| 48 |
font-size: 12px; line-height: 18px; text-decoration: none; text-align: center; cursor: pointer; |
| 49 |
border: 0; border-radius: 2px; color: #efefef; background-color: #555; opacity: 0.8; |
| 50 |
-webkit-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; |
| 51 |
} |
| 52 |
|
| 53 |
.theme-screenshot:hover, .theme-screenshot:active, .theme-screenshot:focus { opacity: 1.0; color: #fff; } |
| 54 |
|
| 55 |
.theme-active:link, .theme-active:visited { background-color: #669966; } |
| 56 |
|
| 57 |
.theme-screenshot img { |
| 58 |
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; |
| 59 |
display: block; width: 100%; height: auto; margin: 0 0 8px 0; padding: 0; border-radius: 2px; |
| 60 |
border: 1px solid #777; box-shadow: 0 0 10px 0 rgba(0,0,0,0.7); |
| 61 |
} |
| 62 |
.theme-admin { |
| 63 |
position: absolute; top: 0; left: 0; width: 100%; height: 50px; line-height: 50px; |
| 64 |
background-color: rgba(0,0,0,0.7); |
| 65 |
} |
| 66 |
.theme-child { |
| 67 |
position: absolute; top: 50px; left: 0; width: 100%; height: 50px; line-height: 50px; |
| 68 |
background-color: rgba(153,51,51,0.7); |
| 69 |
} |
| 70 |
|