piskel/src/css/settings.css

99 lines
1.9 KiB
CSS
Raw Normal View History

2013-09-07 19:50:43 +04:00
/** Righty sticky drawer expanded state. */
.right-sticky-section.sticky-section {
right: 0;
width: 47px;
-webkit-transition: all 200ms ease-out;
-moz-transition: all 200ms ease-out;
-ms-transition: all 200ms ease-out;
2013-12-19 02:22:25 +04:00
-o-transition: all 200ms ease-out;
2013-09-07 19:50:43 +04:00
transition: all 200ms ease-out;
}
.right-sticky-section.expanded {
right: 280px;
}
.right-sticky-section .tool-icon {
float: right;
margin-right: 0;
}
.tool-icon .label {
2013-12-24 15:57:03 +04:00
position: absolute;
left: 0;
bottom: 4px;
right: 0;
font-size: 11px;
text-transform: uppercase;
color: #fff;
text-align: center;
}
2013-09-07 19:50:43 +04:00
.drawer-content {
overflow: hidden;
background-color: #444;
2016-04-05 23:00:50 +03:00
height: 650px;
2013-09-07 19:50:43 +04:00
max-height: 100%;
width: 280px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
2013-12-06 01:12:48 +04:00
box-shadow: 0 0 5px 0 black;
2013-09-07 19:50:43 +04:00
}
.right-sticky-section.expanded .tool-icon {
padding-right: 1px;
2013-09-07 19:50:43 +04:00
}
.right-sticky-section .tool-icon.has-expanded-drawer {
position: relative;
background-color: #444;
margin-right: 0;
padding-right: 2px;
2013-12-06 01:12:48 +04:00
border-left : 3px solid gold;
2013-09-07 19:50:43 +04:00
}
2014-04-12 14:08:53 +04:00
/************************************************************************************************/
/* Common settings classes */
/************************************************************************************************/
2013-09-07 19:50:43 +04:00
.settings-section {
margin: 10px 20px;
font-size: 12px;
font-weight: bold;
color: #ccc;
text-shadow: 1px 1px #000;
}
2013-12-11 00:25:36 +04:00
.settings-section .button {
margin: 0;
}
2013-09-07 19:50:43 +04:00
.settings-title {
color : gold;
2013-09-07 19:50:43 +04:00
margin-top: 20px;
margin-bottom: 10px;
text-transform: uppercase;
border-bottom: 1px #aaa solid;
padding-bottom: 5px;
color: gold;
2013-09-07 19:50:43 +04:00
}
.settings-description {
margin : 0 0 10px 0;
}
2013-12-11 00:25:36 +04:00
.settings-form-section {
margin-bottom: 10px;
}
2013-09-07 19:50:43 +04:00
2014-05-08 03:41:14 +04:00
.settings-item {
margin : 10px 0;
}
[name*=checkbox] {
vertical-align: middle;
}