This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
forked from andreknieriem/photobooth
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
manual.scss
137 lines (118 loc) · 2.11 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
@import 'modules/theme';
@import 'partials/basic';
@import 'partials/button';
@import 'partials/fonts';
@import 'partials/toggle';
@import 'partials/shape';
$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;
&.shape--classic_rounded {
border: 0 none;
border-radius: 10px;
}
}
.panel {
.panel-heading {
padding: 10px;
cursor: pointer;
.plus {
display: inline-block;
}
.minus {
display: none;
}
&:hover {
background: $hoverPanelColor;
}
&.shape--classic,
&.shape--classic_rounded {
border: 1px solid $borderColor;
}
&.shape--classic_rounded,
&.shape--modern,
&.shape--modern_squared {
margin: 5px;
}
}
.panel-body {
display: none;
padding: 20px;
&.shape--classic {
border: 1px solid $borderColor;
}
&.shape--classic_rounded,
&.shape--modern,
&.shape--modern_squared {
margin: 5px;
}
}
&.open {
.panel-heading {
.minus {
display: inline-block;
}
.plus {
display: none;
}
}
}
&.init {
.panel-body {
display: block;
}
}
&.shape--modern,
&.shape--modern_squared {
border: unset;
border-radius: unset;
}
}
.form-row {
margin-bottom: 15px;
}
.back-to-pb {
color: $fontColor;
text-decoration: none;
padding: 0 3px;
&:hover {
background-color: $hoverPanelColor;
}
}
.faq-btn,
.wiki-btn {
padding: 20px 20px;
margin: 5px;
width: 100%;
transition: background 0.7s ease;
&:hover {
background: $hoverColor;
}
}
code {
background-color: #f1f1f1;
color: #606060;
padding: 2px;
font-size: 0.8em;
}