1/* =Menu 2----------------------------------------------- */ 3 4#writr__sidebar { 5 6 #writr__sidebar__tools { 7 display: flex; 8 flex-direction: row; 9 justify-content: center; 10 align-items: center; 11 position: fixed; 12 bottom: 0; 13 left: 0; 14 width: 300px; 15 background: @ini_sidebar_user_tools_color; 16 17 > * { 18 line-height: 16px; 19 font-size: 16px; 20 margin: 0; 21 color:@ini_background; 22 vertical-align: middle; 23 } 24 .user-tools { 25 flex-grow: 1; 26 27 a:hover { 28 background: @ini_text_alt; 29 } 30 a { 31 display: flex; 32 flex-direction: row; 33 justify-content: center; 34 align-items: center; 35 text-decoration: none; 36 color: @ini_background; 37 outline: none; 38 padding: 16px; 39 margin: 0px; 40 width: 100%; 41 height: 100%; 42 43 img { 44 display: inline-block; 45 height: 32px; 46 width: 32px; 47 border-radius: 50%; 48 margin: 0; 49 padding: 0; 50 border: 1px solid @ini_background; 51 } 52 span { 53 margin-left: 8px; 54 } 55 i { 56 margin-right: 8px; 57 } 58 } 59 ul { 60 margin: 0px; 61 62 li { 63 list-style-type: none; 64 width: 100%; 65 margin-top: 0px; 66 67 a,button { 68 width: 100%; 69 padding: 8px 16px; 70 border-radius: 0px; 71 justify-content: left; 72 73 i { 74 vertical-align: middle; 75 margin-right: 8px; 76 } 77 } 78 } 79 } 80 } 81 .site-tools { 82 a { 83 font-size:32px; 84 color: @ini_background; 85 } 86 } 87 } 88} 89 90.enableToolbar #writr__sidebar__tools { 91 display: none!important; 92} 93