-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstepper.scss
More file actions
121 lines (103 loc) · 1.88 KB
/
stepper.scss
File metadata and controls
121 lines (103 loc) · 1.88 KB
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
.dcx-stepper {
width: 100%;
margin-bottom: 40px;
}
.dcx-horizontal-stepper .dcx-header-container {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
flex-wrap: nowrap;
}
.dcx-vertical-stepper .dcx-header-container {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.dcx-header-wrapper {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.dcx-step-header {
cursor: pointer;
display: flex;
align-items: center;
font-weight: bold;
font-size: 16px;
color: #333;
}
.dcx-step-header .step-number {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #d1d0ce;
color: white;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
font-size: 14px;
font-weight: bold;
}
.dcx-step-header .step-number.active {
background-color: #1976d2;
}
.dcx-step-content {
display: none;
}
.dcx-step-content.dcx-visible-content {
display: block;
}
.dcx-content-container {
margin-top: 20px;
}
.step-button {
padding: 10px 20px;
font-size: 14px;
background-color: #1976d2;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin: 0 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
.step-button:hover {
background-color: #0056b3;
}
.step-button.submit {
background-color: #28a745;
}
.step-button.submit:hover {
background-color: #218838;
}
.custom-separator {
margin: 0 10px;
border: 0;
height: 1px;
background: #ccc;
}
.form-label {
display: flex;
flex-direction: column;
font-weight: bold;
}
.form-input,
.form-select,
.form-textarea {
padding: 8px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-checkbox {
margin-top: 10px;
}
.custom-separator {
width: 100%;
border: 0;
border-top: 1px solid #ccc;
margin: 10px 0;
}