PluginProbe ʕ •ᴥ•ʔ
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization / 1.19.3
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization v1.19.3
1.19.8 1.19.7 1.19.6 1.19.5 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.11.0 1.12.0 1.13.0 1.14.0 1.15.0 1.15.1 1.15.2 1.15.3 1.16.0 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.16.6 1.16.7 1.16.8 1.17.0 1.17.6 1.17.7 1.17.8 1.17.9 1.18.0 1.18.1 1.18.2 1.18.3 1.18.4 1.18.5 1.18.6 1.18.7 1.18.8 1.18.9 1.19.0 1.19.1 1.19.2 1.19.3 1.19.4 1.3.19 1.3.20 1.4.0 1.4.1 1.5.0 1.5.1 1.5.10 1.5.11 1.5.12 1.5.13 1.5.14 1.5.15 1.5.16 1.5.17 1.5.18 1.5.19 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.8.1 1.8.3 1.9.0 1.9.1 1.9.2
nitropack / view / stylesheet / scss / _preview.scss
nitropack / view / stylesheet / scss Last commit date
_fancy-radio.scss 1 year ago _helpers.scss 7 months ago _modals.scss 1 year ago _notifications.scss 7 months ago _preview.scss 7 months ago _select2.scss 1 year ago _variables.scss 7 months ago
_preview.scss
125 lines
1 @use "variables" as *;
2
3 #nitropack-preview-site-container {
4 padding-bottom: 1.5rem;
5 .progress-wrapper {
6 margin-bottom: 2rem;
7 }
8 h1 {
9 font-size: 1.25rem;
10 color: $gray-700;
11 font-weight: bold;
12 margin-bottom: 0.5rem;
13 }
14 .text-content {
15 margin: 2rem 0;
16 font-size: 1rem;
17 color: $gray-600;
18 p {
19 font-size: 1rem;
20 color: $gray-600;
21 }
22 ol {
23 margin: .5rem 0 .5rem 1.25rem;
24 li {
25 margin: 0;
26 }
27 }
28 }
29 }
30 .modes-container {
31 display: grid;
32 grid-gap: 0.5rem;
33 grid-template-columns: 1fr 1fr 1fr 1fr;
34 grid-auto-columns: 1fr;
35 margin: 2rem 0;
36
37 @media (max-width: 1024px) {
38 grid-template-columns: 1fr 1fr;
39 }
40
41 @media (max-width: 768px) {
42 grid-template-columns: 1fr;
43 }
44 }
45 .modes-container .mode {
46 border: 1px solid $gray-300;
47 border-radius: $border-radius;
48 padding: 1rem;
49 display: flex;
50 justify-content: space-between;
51 flex-direction: column;
52 align-self: stretch;
53 .mode-header {
54 display: flex;
55 align-items: center;
56 margin-bottom: 1rem;
57 }
58 .select-mode {
59 margin-top: $gutter * 2;
60 text-align: center;
61 .icon {
62 margin-right: 0.5rem;
63 }
64 &.selected {
65 border: 0;
66 pointer-events: none; // styles for selected mode
67 }
68 }
69 h3 {
70 margin-bottom: 0;
71 }
72 p {
73 color: $gray-500;
74 }
75 &.active {
76 border-color: $primary-color;
77 background-color: $purple-50;
78 }
79 }
80 .chevron-wrapper {
81 display: flex;
82 flex-direction: column;
83 justify-content: center;
84 margin-right: 0.5rem;
85 }
86 .go-live-container {
87 gap: 1rem;
88 display: flex;
89 }
90 //modal
91 #go-live-modal {
92 .active-mode {
93 font-weight: bold;
94 }
95 }
96 .free-plan-info {
97 margin-top: 1.5rem;
98 }
99 .nitropack-badge-wrapper {
100 display: flex;
101 align-items: center;
102 justify-content: center;
103 border-radius: $border-radius;
104 border: 1px solid $divider-color;
105 width: 32rem;
106 margin: 0.5rem auto 0 auto;
107 .logo-wrapper {
108 position: relative;
109 }
110 .optimized-by {
111 position: absolute;
112 top: -7px;
113 left: 27px;
114 font-size: 0.45rem;
115 }
116 .badge-text {
117 &:before {
118 content: " | ";
119 margin: 0 0.5rem;
120 }
121 font-size: 0.75rem;
122 color: $gray-600;
123 }
124 }
125