-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-style.css
64 lines (53 loc) · 1.25 KB
/
example-style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* homeean custom dashboard styling
*/
/* General */
* {
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
/* Dashboard Spruch */
.sentence.selectable > div {
display: none;
}
/* Dashboard Steuerung (oben rechts) */
.toggleMoveWidgetsBtn, .editModeBtn, .fullScreenBtn, .diaryBtn {
display: none;
}
/* Dashboard Header (mobile only) */
.itemListHeader {
display: none !important;
}
/* Hauptnavigation links*/
.mainNavWrap {
display:none;
}
/* homee Farben ganz oben */
.homeeColors {
display: none;
}
/* Dashboard Hintergrund */
.dashboardWrap {
background-position:center bottom;
background-image:url("https://images.unsplash.com/photo-1497089868400-ca22b72b719e?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=c48da90e8609b3af668f42a2ba2336d1&auto=format&fit=crop&w=1500&q=80");
background-repeat:no-repeat;
-webkit-background-size:cover;
background-size:cover;
}
/* Widget Style */
.modeControlWrap, .widgetWrap {
opacity: 0.8;
max-height: 150px !important;
}
/* hide edit dashboard widget */
[ng-include="'widget-type-edit.html'"] {
display: none;
}
.widgetValues {
display: flex;
flex-wrap: wrap;
font-size: 0.85em;
}
.widgetValues li:not(:first-child)::before {
content: ", "
}