1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * User settings
- */
-
- .setting_description > * {
- margin: 1em 0 0 0;
- }
-
- #settings_sections {
- /* Section links */
- h2 {
- text-align: left;
- }
-
- /* Controls */
- #submit,
- #settings_search {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- width: 100%;
- }
- }
-
- /* Fixed sidebar */
- #settings_sections.fixed {
- position: fixed;
- top: 1em;
- }
-
- /* Stylesheet gallery in user profile editing */
- #css_gallery {
- overflow: hidden;
- margin-top: 10px;
- }
-
- .preview_wrapper {
- position: relative;
- display: inline-block;
- width: 40%;
- margin: 0 10px;
- }
-
- .preview_image {
- display: block;
- cursor: pointer;
- overflow: hidden;
-
- img {
- width: 100%;
- }
- }
-
- .preview_name {
- text-align: center;
- margin-top: 5px;
- }
|