forked from andi34/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanual.scss
116 lines (102 loc) · 1.76 KB
/
manual.scss
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import 'modules/theme';
@import 'partials/basic';
@import 'partials/button';
@import 'partials/fonts';
@import 'partials/toggle';
$error: #e74c3c;
$success: #2ecc71;
.manualwrapper {
display: block;
position: relative;
overflow-y: auto;
width: 100%;
height: 100%;
background-color: $mainColor;
background-image: $adminBackground;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.manual-panel {
width: calc(40 * 1em);
padding: 30px 30px 90px;
height: auto;
margin: 50px auto;
background: $panelColor;
position: relative;
max-width: 100%;
color: $fontColor;
}
.panel {
.panel-heading {
padding: 10px;
cursor: pointer;
border: 1px solid $borderColor;
.plus {
display: inline-block;
}
.minus {
display: none;
}
&:hover {
background: $hoverPanelColor;
}
}
.panel-body {
display: none;
padding: 20px;
border: 1px solid $borderColor;
}
&.open {
.panel-heading {
.minus {
display: inline-block;
}
.plus {
display: none;
}
}
}
&.init {
.panel-body {
display: block;
}
}
}
.form-row {
margin-bottom: 15px;
}
.back-to-pb {
color: $fontColor;
text-decoration: none;
padding: 0 3px;
&:hover {
background-color: $hoverPanelColor;
}
}
.faq-btn {
padding-top: 10px;
width: 100%;
}
.wiki-btn {
cursor: pointer;
background: $mainColor;
color: $buttonFontColor;
width: 100%;
position: absolute;
padding: 20px;
bottom: 0;
left: 0;
right: 0;
transition: background 0.7s ease;
&:hover {
background: $hoverColor;
}
}
code {
background-color: #f1f1f1;
color: #606060;
padding: 2px;
font-size: 0.8em;
}