bludit/bl-kernel/admin/themes/grizzly/css/bludit.css

95 lines
1.3 KiB
CSS
Raw Normal View History

2019-02-08 08:53:56 +01:00
html {
height: 100%;
}
body {
2019-02-19 08:38:17 +01:00
height: 100%;
overflow: hidden;
margin: 0px;
display: flex;
background: #fdfdfd;
2019-02-08 08:53:56 +01:00
}
/* LOGIN */
body.login {
background: rgb(255,255,255);
background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 53%);
height: 100%;
}
2019-02-19 08:38:17 +01:00
/* TOOLBAR */
#toolbar {
font-size: 14px;
border-bottom: 1px solid #f0f0f0;
text-shadow: 2px 2px 3px rgba(255,255,255,0.1);
2019-02-20 23:13:59 +01:00
}
#toolbar .selected {
color: rgba(36, 122, 43, 0.77);
}
#draft-button,
#delete-button {
2019-02-19 08:38:17 +01:00
cursor: pointer;
}
#message {
color: rgba(36, 122, 43, 0.77);
}
/* EDITOR */
div.editor-container {
margin: 0 auto;
background: #fdfdfd;
}
2019-02-20 23:13:59 +01:00
/* SIDEBAR */
div.sidebar {
2019-02-19 08:38:17 +01:00
background: #333;
font-size: 0.9em;
}
2019-02-20 23:13:59 +01:00
div.sidebar li.list-group-item {
2019-02-19 08:38:17 +01:00
background: none;
color: #ccc;
2019-02-08 08:53:56 +01:00
border: none;
2019-02-19 08:38:17 +01:00
cursor: pointer;
padding: 5px 15px;
}
2019-02-20 23:13:59 +01:00
div.sidebar li.list-group-item:hover {
2019-02-19 08:38:17 +01:00
color: #fff;
}
2019-02-20 23:13:59 +01:00
div.sidebar li.tagSelected {
2019-02-19 08:38:17 +01:00
background: #334E6A;
color: #fff;
}
/* PAGES */
div.pages-list {
background: #f7f7f7;
}
#currentPages li.list-group-item {
background: none;
color: #333;
border-right: 3px solid #f7f7f7;
cursor: pointer;
}
#currentPages li.list-group-item:hover {
color: #000;
border-right: 3px solid #ccc;
}
#currentPages li.pageSelected {
color: #000;
border-right: 3px solid #ccc;
}
div.pageItemContent {
color: #828282;
font-size: 0.8em;
2019-02-08 08:53:56 +01:00
}