PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 8.5.78
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v8.5.78
9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 8.5.4 All 221 releases
wpvr / admin / scss / style.scss

style.scss in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.78, at admin/scss/style.scss

149 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import 'welcome-page';
2 @import 'setup-wizard';
3 @import 'initial_setup_wizard';
4
5
6
7
8 /**
9 * Setup wizard custom CSS.
10 * @since 1.0.3
11 */
12
13 *,
14 *::after,
15 *::before {
16 box-sizing: border-box;
17 margin: 0;
18 padding: 0;
19 }
20
21 $step_color_primary: #00B4FF;
22 $step-primary-font: 'Roboto', sans-serif;
23
24 .setup-wizard__logo {
25 text-align: center;
26 margin: auto;
27 margin-bottom: 25px;
28 display: block;
29 max-width: 100%;
30
31 @media (max-width: 1280px) {
32
33 }
34 }
35
36 .setup-wizard__pregress-bar {
37 width: 100%;
38 text-align: center;
39 display: flex;
40 border: 1px solid #EBEFF5;
41 border-radius: 10px;
42 background: #fff;
43 overflow: hidden;
44
45 .setup-wizard__pregress-step {
46 flex-grow: 1;
47 position: relative;
48 padding: 15px 16px 15px 50px;
49 background-color: transparent;
50
51 &:first-child {
52 padding: 15px 16px;
53 }
54
55 &:before {
56 content: "";
57 position: absolute;
58 z-index: 2;
59 top: 0px;
60 bottom: 0;
61 right: -18px;
62 margin: auto 0;
63 width: 40px;
64 height: 43px;
65 background: rgb(255 255 255);
66 transform: rotate(-43deg);
67 clip-path: polygon(100% 2%, 2% 100%, 100% 100%);
68 border-radius: 0 0 10px 0;
69 border-right: 2px solid #EBEFF5;
70 border-bottom: 2px solid #EBEFF5;
71 }
72
73 p {
74 display: flex;
75 align-items: center;
76 font-size: 14px;
77 font-weight: 400;
78 gap: 9px;
79 margin: 0;
80 font-family: $step-primary-font;
81 color: $step_color_primary;
82
83 span {
84 border: 1px solid $step_color_primary;
85 border-radius: 50%;
86 width: 24px;
87 height: 24px;
88 display: flex;
89 align-items: center;
90 justify-content: center;
91 }
92 }
93 }
94
95 .step-not-visited {
96 p {
97 color: #73707D;
98
99 span {
100 border: 1px solid rgba(229, 232, 243, 1);
101 color: rgba(36, 34, 60, 0.2);
102 }
103 }
104 }
105
106 .step-active {
107 background: $step_color_primary;
108 color: #ffffff;
109
110 &:before {
111 background: $step_color_primary;
112 border-right: none;
113 border-bottom: none;
114 }
115
116 p {
117 font-weight: 500;
118 color: #fff;
119
120 span {
121 border: 1px solid #ffffff;
122 }
123 }
124 }
125
126 .step-visited {
127 background: #FFFFFF;
128
129 p {
130 font-weight: 600;
131 color: #081E43;
132
133 span {
134 background: $step_color_primary;
135 display: flex;
136 align-items: center;
137 justify-content: center;
138
139 svg{
140 width: 9px;
141 height: 9px;
142 }
143 }
144 }
145 }
146 }
147
148
149