@ozdao/prometheus-framework 0.2.30 → 0.2.31
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/addMembersQuantity-3505b6f3.mjs +98 -0
- package/dist/addMembersQuantity-fb552ca0.js +97 -0
- package/dist/auth.server.js +6 -9
- package/dist/auth.server.mjs +6 -9
- package/dist/community.server.js +28 -21
- package/dist/community.server.mjs +28 -21
- package/dist/events.server.js +1 -1
- package/dist/events.server.mjs +1 -1
- package/dist/files.server.js +114 -111
- package/dist/files.server.mjs +114 -111
- package/dist/gallery.server.js +3 -3
- package/dist/gallery.server.mjs +3 -3
- package/dist/globals.server.js +1 -1
- package/dist/globals.server.mjs +1 -1
- package/dist/index-a8dffc0c.js +213 -0
- package/dist/index-d769324d.mjs +214 -0
- package/dist/mailing-37c2ba41.mjs +68 -0
- package/dist/mailing-fe16a26a.js +67 -0
- package/dist/main.css +1 -1
- package/dist/middlewares.server.js +1 -1
- package/dist/middlewares.server.mjs +1 -1
- package/dist/organizations.server.js +125 -25
- package/dist/organizations.server.mjs +125 -25
- package/dist/prometheus-framework.cjs.js +30 -29
- package/dist/prometheus-framework.es.js +2478 -2282
- package/dist/reports.server.js +1 -1
- package/dist/reports.server.mjs +1 -1
- package/dist/users.server.js +1 -1
- package/dist/users.server.mjs +1 -1
- package/package.json +4 -2
- package/src/assets/images/logo.svg +7 -7
- package/src/components/Block/Block.vue +77 -0
- package/src/components/Breadcrumbs/Breadcrumbs.vue +2 -2
- package/src/components/Button/Button.vue +32 -227
- package/src/components/Checkbox/Checkbox.vue +1 -1
- package/src/components/Chips/Chips.vue +8 -8
- package/src/components/DatePicker/DatePicker.vue +3 -4
- package/src/components/EditImages/EditImages.vue +32 -14
- package/src/{modules/globals/components/sections → components/Feed}/Feed.vue +60 -45
- package/src/components/FieldBig/FieldBig.vue +16 -5
- package/src/components/FieldPhone/FieldPhone.vue +2 -1
- package/src/components/Footer/Footer.vue +36 -27
- package/src/components/Header/Header.vue +161 -166
- package/src/components/Loader/Loader.vue +9 -2
- package/src/components/LocationMarker/LocationMarker.vue +38 -12
- package/src/components/LocationSelection/LocationSelection.vue +67 -75
- package/src/components/Magnifier/Magnifier.vue +3 -3
- package/src/components/Navigation/Navigation.vue +16 -16
- package/src/components/Popup/Popup.vue +8 -6
- package/src/components/Select/Select.vue +35 -6
- package/src/components/SelectMulti/SelectMulti.vue +5 -13
- package/src/components/Shader/Shader.vue +128 -0
- package/src/components/Sidebar/Sidebar.vue +71 -35
- package/src/components/Spoiler/Spoiler.vue +1 -1
- package/src/components/Tab/Tab.vue +1 -1
- package/src/components/Tooltip/Tooltip.vue +1 -1
- package/src/components/UploadImage/UploadImage.vue +4 -4
- package/src/components/UploadImageMultiple/UploadImageMultiple.vue +54 -10
- package/src/modules/applications/controllers/applications.controller.js +0 -1
- package/src/modules/auth/components/pages/EnterCode.vue +1 -1
- package/src/modules/auth/components/pages/EnterPassword.vue +3 -3
- package/src/modules/auth/components/pages/ResetPassword.vue +1 -2
- package/src/modules/auth/components/pages/SignIn.vue +26 -10
- package/src/modules/auth/components/pages/SignUp.vue +1 -2
- package/src/modules/auth/controllers/twofa.controller.js +4 -4
- package/src/modules/auth/localization/EnterCode.json +2 -2
- package/src/modules/auth/localization/EnterPassword.json +2 -2
- package/src/modules/auth/localization/ResetPassword.json +2 -2
- package/src/modules/auth/localization/SignIn.json +3 -3
- package/src/modules/auth/localization/SignUp.json +3 -3
- package/src/modules/auth/utils/server/verifyAppleIdToken.js +0 -1
- package/src/modules/backoffice/components/layouts/Backoffice.vue +1 -1
- package/src/modules/backoffice/components/pages/Dashboard.vue +171 -120
- package/src/modules/backoffice/router/backoffice.js +119 -129
- package/src/modules/chats/components/blocks/ChatMessage.vue +25 -0
- package/src/modules/chats/components/pages/ChatPage.vue +50 -0
- package/src/modules/chats/components/sections/ChatWindow.vue +38 -0
- package/src/modules/chats/controllers/chats.controller.js +32 -0
- package/src/modules/chats/models/chat.model.js +26 -0
- package/src/modules/chats/routes/chats.routes.js +53 -0
- package/src/modules/chats/store/chat.store.js +61 -0
- package/src/modules/community/components/blocks/CardBlogpost.vue +19 -4
- package/src/modules/community/components/layouts/Community.vue +96 -39
- package/src/modules/community/components/pages/Blog.vue +4 -3
- package/src/modules/community/components/pages/BlogPost.vue +10 -1
- package/src/modules/community/components/pages/CreateBlogPost.vue +36 -17
- package/src/modules/community/components/sections/HotPosts.vue +3 -3
- package/src/modules/community/components/sections/JoinUs.vue +19 -13
- package/src/modules/community/controllers/blog.controller.js +3 -4
- package/src/modules/community/controllers/utils/queryProcessor.js +16 -17
- package/src/modules/community/models/blogpost.model.js +6 -3
- package/src/modules/community/store/blogposts.js +1 -0
- package/src/modules/constructor/components/elements/Embed.vue +12 -1
- package/src/modules/constructor/components/elements/ImageUpload.vue +2 -2
- package/src/modules/constructor/components/elements/Textarea.vue +6 -1
- package/src/modules/constructor/components/elements/Video.vue +79 -0
- package/src/modules/constructor/components/elements/VideoPlayer.vue +59 -0
- package/src/modules/constructor/components/elements/Youtube.vue +52 -0
- package/src/modules/constructor/components/sections/Constructor.vue +27 -3
- package/src/modules/events/components/layouts/layoutEvents.vue +7 -28
- package/src/modules/files/controllers/files.controller.js +9 -22
- package/src/modules/files/middlewares/server/index.js +2 -2
- package/src/modules/files/middlewares/server/middlewareBusboy.js +137 -0
- package/src/modules/files/routes/files.routes.js +9 -9
- package/src/modules/globals/localization/vue-i18n.js +8 -1
- package/src/modules/globals/mixins/mixins.js +23 -13
- package/src/modules/globals/router/routerGuards.js +2 -2
- package/src/modules/globals/store/globals.js +86 -9
- package/src/modules/globals/utils/mailing.js +24 -3
- package/src/modules/icons/entities/IconCommunity.vue +4 -4
- package/src/modules/icons/entities/IconEvents.vue +1 -1
- package/src/modules/icons/entities/IconGroups.vue +1 -1
- package/src/modules/icons/entities/IconPrice.vue +5 -0
- package/src/modules/icons/entities/IconProfile.vue +5 -0
- package/src/modules/icons/entities/IconShopcart.vue +5 -0
- package/src/modules/icons/entities/IconTime.vue +5 -0
- package/src/modules/icons/icons.client.js +4 -0
- package/src/modules/icons/labels/LabelAppStore.vue +24 -24
- package/src/modules/icons/labels/LabelGooglePlay.vue +9 -9
- package/src/modules/icons/logos/Logotype.vue +20 -0
- package/src/modules/icons/navigation/IconAdd.vue +17 -0
- package/src/modules/icons/navigation/IconChevronBottom.vue +18 -0
- package/src/modules/icons/navigation/IconChevronRight.vue +3 -3
- package/src/modules/icons/navigation/IconDelete.vue +19 -0
- package/src/modules/icons/navigation/IconMinus.vue +15 -0
- package/src/modules/icons/navigation/IconSearch.vue +17 -0
- package/src/modules/icons/navigation/IconUpload.vue +16 -0
- package/src/modules/icons/placeholders/PlaceholderImage.vue +5 -0
- package/src/modules/icons/placeholders/PlaceholderOrganizationPic.vue +20 -0
- package/src/modules/icons/placeholders/PlaceholderUserpic.vue +4 -18
- package/src/modules/icons/socials/instagram.vue +1 -1
- package/src/modules/icons/socials/line.vue +1 -1
- package/src/modules/icons/socials/reddit.vue +1 -1
- package/src/modules/icons/socials/telegram.vue +1 -1
- package/src/modules/icons/socials/twitter.vue +1 -1
- package/src/modules/icons/socials/youtube.vue +1 -1
- package/src/modules/landing/components/sections/Guide.vue +92 -0
- package/src/modules/landing/components/sections/MobileApp.vue +23 -12
- package/src/modules/marketplace/components/layouts/Marketplace.vue +76 -188
- package/src/modules/marketplace/components/pages/Catalog.vue +65 -119
- package/src/modules/marketplace/components/sections/Filters.vue +195 -0
- package/src/modules/marketplace/store/marketplace.js +2 -2
- package/src/modules/middlewares/client/auth.validation.js +0 -6
- package/src/modules/middlewares/client/states.validation.js +2 -8
- package/src/modules/middlewares/server/authJwt.js +1 -1
- package/src/modules/mobile/components/Menu/MenuItem.vue +3 -6
- package/src/modules/openai/controllers/openai.controller.js +0 -1
- package/src/modules/orders/components/blocks/CardOrder.vue +166 -0
- package/src/modules/orders/components/blocks/CardOrderItem.vue +59 -66
- package/src/modules/orders/components/blocks/Positions.vue +4 -4
- package/src/modules/orders/components/pages/EditOrder.vue +78 -142
- package/src/modules/orders/components/pages/FormOrder.vue +192 -0
- package/src/modules/orders/components/pages/Order.vue +326 -120
- package/src/modules/orders/components/pages/Orders.vue +13 -9
- package/src/modules/orders/components/pages/{ViewOrder.vue → Orders_refact.vue} +13 -10
- package/src/modules/orders/components/partials/ShopCart.vue +22 -13
- package/src/modules/orders/components/sections/EmptyState.vue +1 -1
- package/src/modules/orders/components/sections/{Form.vue → FormOrderDetails.vue} +38 -106
- package/src/modules/orders/controllers/orders.controller.js +37 -28
- package/src/modules/orders/models/order.model.js +39 -9
- package/src/modules/orders/router/orders.router.js +23 -2
- package/src/modules/orders/routes/orders.routes.js +14 -17
- package/src/modules/orders/store/orders.js +24 -9
- package/src/modules/orders/store/shopcart.js +20 -19
- package/src/modules/organizations/components/blocks/CardDepartment.vue +1 -1
- package/src/modules/organizations/components/blocks/CardOrganization.vue +98 -46
- package/src/modules/organizations/components/blocks/Rating.vue +1 -1
- package/src/modules/organizations/components/blocks/Socials.vue +11 -3
- package/src/modules/organizations/components/elements/ButtonToggleMembership.vue +1 -1
- package/src/modules/organizations/components/pages/Department.vue +1 -1
- package/src/modules/organizations/components/pages/DepartmentEdit.vue +4 -4
- package/src/modules/organizations/components/pages/Members.vue +6 -4
- package/src/modules/organizations/components/pages/Organization.vue +120 -49
- package/src/modules/organizations/components/pages/OrganizationEdit.vue +8 -1
- package/src/modules/organizations/components/pages/Organizations.vue +27 -6
- package/src/modules/organizations/components/sections/DetailsTab.vue +11 -9
- package/src/modules/organizations/components/sections/Feed.vue +0 -3
- package/src/modules/organizations/components/sections/FeedDepartments.vue +2 -2
- package/src/modules/organizations/controllers/organizations.controller.js +126 -15
- package/src/modules/organizations/controllers/utils/addMembersQuantity.js +19 -9
- package/src/modules/organizations/models/organization.model.js +5 -2
- package/src/modules/organizations/router/members.router.js +1 -3
- package/src/modules/organizations/router/organizations.js +8 -6
- package/src/modules/organizations/router/products.router.js +36 -2
- package/src/modules/organizations/store/organizations.js +38 -84
- package/src/modules/pages/controllers/pages.controller.js +0 -4
- package/src/modules/payments/controller/payments.controller.js +1 -1
- package/src/modules/products/components/blocks/CardLeftover.vue +17 -22
- package/src/modules/products/components/blocks/CardPosition.vue +96 -49
- package/src/modules/products/components/blocks/CardProduct.vue +24 -53
- package/src/modules/products/components/blocks/Images360.vue +4 -4
- package/src/modules/products/components/blocks/ImagesThumbnails.vue +2 -7
- package/src/modules/products/components/blocks/ListPositions.vue +74 -0
- package/src/modules/products/components/elements/Price.vue +11 -5
- package/src/modules/products/components/elements/THC.vue +6 -6
- package/src/modules/products/components/pages/{LeftoverAdd.vue → EditLeftover.vue} +93 -79
- package/src/modules/products/components/pages/Leftovers.vue +74 -70
- package/src/modules/products/components/pages/Product.vue +4 -7
- package/src/modules/products/components/pages/ProductEdit.vue +230 -88
- package/src/modules/products/components/pages/ProductRecommmendation.vue +1 -1
- package/src/modules/products/components/pages/Products.vue +6 -3
- package/src/modules/products/components/pages/ProductsBackoffice.vue +3 -5
- package/src/modules/products/components/sections/EditModifications.vue +3 -3
- package/src/modules/products/components/sections/EditProductInfo.vue +40 -50
- package/src/modules/products/components/sections/FilterProducts.vue +57 -18
- package/src/modules/products/components/sections/HeroRecommendation.vue +233 -99
- package/src/modules/products/components/sections/MenuSection.vue +127 -0
- package/src/modules/products/components/sections/PopularProducts.vue +81 -37
- package/src/modules/products/components/sections/SectionProduct.vue +21 -23
- package/src/modules/products/controllers/leftovers.controller.js +11 -1
- package/src/modules/products/controllers/products.controller.js +100 -97
- package/src/modules/products/models/leftover.model.js +6 -4
- package/src/modules/products/models/product.model.js +13 -1
- package/src/modules/products/routes/products.routes.js +4 -4
- package/src/modules/products/store/leftovers.js +4 -24
- package/src/modules/products/store/products.js +44 -30
- package/src/modules/spots/components/blocks/CardSpot.vue +43 -72
- package/src/modules/spots/components/layouts/Spots.vue +9 -91
- package/src/modules/spots/components/pages/Map.vue +171 -62
- package/src/modules/spots/components/pages/Spot.vue +1 -1
- package/src/modules/spots/components/pages/SpotEdit.vue +131 -174
- package/src/modules/spots/controllers/spots.controller.js +1 -0
- package/src/modules/spots/models/spot.model.js +6 -3
- package/src/modules/spots/store/spots.js +42 -48
- package/src/modules/users/components/pages/Profile.vue +6 -28
- package/src/modules/users/components/pages/ProfileBlogposts.vue +1 -1
- package/src/modules/users/components/pages/ProfileEdit.vue +1 -1
- package/src/modules/users/components/pages/ProfileEvents.vue +1 -1
- package/src/modules/users/components/pages/ProfileOrganizations.vue +1 -1
- package/src/modules/users/router/users.js +1 -1
- package/src/modules/wallet/components/pages/Wallet.vue +105 -109
- package/src/modules/wallet/controllers/crypto.controller.js +129 -0
- package/src/modules/wallet/models/reward.model.js +53 -0
- package/src/modules/wallet/routes/crypto.routes.js +36 -0
- package/src/modules/wallet/store/wallet.js +52 -49
- package/src/styles/base/all.scss +143 -11
- package/src/styles/base/backgrounds.scss +2 -34
- package/src/styles/base/borders.scss +18 -23
- package/src/styles/base/scrolling.scss +97 -29
- package/src/styles/base/{shadows.scss → shadow_transitions_hover_refactor.scss} +55 -2
- package/src/styles/config.scss +69 -17
- package/src/styles/layout.scss +12 -182
- package/src/styles/reset.scss +20 -21
- package/src/styles/responsive.scss +4 -67
- package/src/styles/theme.scss +3 -4
- package/src/styles/typography.scss +15 -17
- package/src/assets/fonts/AvenirNext-Bold.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-DemiBold.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Heavy.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Medium.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Regular.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-UltraLight.woff2 +0 -0
- package/src/modules/files/middlewares/server/md.js +0 -152
- package/src/modules/files/middlewares/server/middlewareMulter.js +0 -121
- package/src/modules/organizations/controllers/organizations.new.controller.js +0 -372
- package/src/modules/products/components/blocks/EditCategories.vue +0 -68
- package/src/modules/products/components/sections/EditParameters.vue +0 -58
- package/src/modules/products/components/sections/EditProductImages.vue +0 -67
- package/src/modules/spots/components/sections/Feed.vue +0 -64
- package/src/styles/base/border-radius.scss +0 -47
- package/src/styles/base/cursors.scss +0 -23
- package/src/styles/base/height.scss +0 -60
- package/src/styles/base/hovers.scss +0 -110
- package/src/styles/base/positions.scss +0 -192
- package/src/styles/base/transitions.scss +0 -137
- package/src/styles/base/width.scss +0 -2
- package/src/styles/components/block.scss +0 -18
- package/src/styles/components/breadcrumbs.scss +0 -0
- package/src/styles/components/input.scss +0 -319
@@ -1,319 +0,0 @@
|
|
1
|
-
.input-text-label {
|
2
|
-
display: block;
|
3
|
-
width: 100%;
|
4
|
-
|
5
|
-
input, select, textarea {
|
6
|
-
display: block;
|
7
|
-
position: relative;
|
8
|
-
|
9
|
-
width: 100%;
|
10
|
-
// height: 3rem;
|
11
|
-
|
12
|
-
padding-left: 1rem;
|
13
|
-
|
14
|
-
font-size: 0.875rem;
|
15
|
-
font-weight: 300;
|
16
|
-
|
17
|
-
z-index: 4;
|
18
|
-
|
19
|
-
border: 0;
|
20
|
-
background: #F7F7F7;
|
21
|
-
|
22
|
-
width: 100%;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
.input {
|
27
|
-
display: block;
|
28
|
-
position: relative;
|
29
|
-
|
30
|
-
background: white;
|
31
|
-
border: none;
|
32
|
-
|
33
|
-
border-radius: 0.5rem;
|
34
|
-
|
35
|
-
|
36
|
-
&-select {
|
37
|
-
|
38
|
-
&:hover {
|
39
|
-
cursor: pointer;
|
40
|
-
}
|
41
|
-
|
42
|
-
&:focus {
|
43
|
-
outline: none;
|
44
|
-
box-shadow: 0 0 1px 1px rgba(var(--main),0.33);
|
45
|
-
}
|
46
|
-
}
|
47
|
-
|
48
|
-
&-text {
|
49
|
-
width: 100%;
|
50
|
-
height: 3rem;
|
51
|
-
|
52
|
-
padding-left: 1rem;
|
53
|
-
|
54
|
-
font-size: 1.125rem;
|
55
|
-
font-weight: 300;
|
56
|
-
|
57
|
-
z-index: 4;
|
58
|
-
|
59
|
-
&:focus {
|
60
|
-
outline: none;
|
61
|
-
box-shadow: 0 0 1px 1px rgba(var(--main),0.33);
|
62
|
-
}
|
63
|
-
}
|
64
|
-
|
65
|
-
&-textarea {
|
66
|
-
min-height: 3rem;
|
67
|
-
|
68
|
-
resize: vertical;
|
69
|
-
height: auto;
|
70
|
-
}
|
71
|
-
|
72
|
-
|
73
|
-
.input-status {
|
74
|
-
display: block;
|
75
|
-
position: absolute;
|
76
|
-
|
77
|
-
right: 1.5rem;
|
78
|
-
top: calc(50% - 0.75rem);
|
79
|
-
|
80
|
-
width: 1.5rem;
|
81
|
-
height: 1.5rem;
|
82
|
-
|
83
|
-
border-radius: 1.5rem;
|
84
|
-
|
85
|
-
background: red;
|
86
|
-
|
87
|
-
z-index: 5;
|
88
|
-
}
|
89
|
-
}
|
90
|
-
|
91
|
-
|
92
|
-
.input-textarea {
|
93
|
-
padding-left: 1rem;
|
94
|
-
padding-top: 1rem;
|
95
|
-
font-size: .875rem;
|
96
|
-
font-weight: 300;
|
97
|
-
z-index: 4;
|
98
|
-
border: 0;
|
99
|
-
background: #F7F7F7;
|
100
|
-
width: 100%;
|
101
|
-
}
|
102
|
-
|
103
|
-
.input-description {
|
104
|
-
word-break: break-word;
|
105
|
-
min-height: 6rem;
|
106
|
-
padding-top: 1rem;
|
107
|
-
}
|
108
|
-
|
109
|
-
.input-price {
|
110
|
-
display: flex;
|
111
|
-
position: relative;
|
112
|
-
|
113
|
-
width: 100%;
|
114
|
-
|
115
|
-
.input-label {
|
116
|
-
display: flex;
|
117
|
-
align-items: center;
|
118
|
-
justify-content: center;
|
119
|
-
position: relative;
|
120
|
-
|
121
|
-
width: 4rem;
|
122
|
-
|
123
|
-
background: red;
|
124
|
-
|
125
|
-
background: #F7F7F7;
|
126
|
-
border-right: 1px solid rgba(0,0,0,0.1);
|
127
|
-
border-radius: 0.5rem;
|
128
|
-
|
129
|
-
border-top-right-radius: 0;
|
130
|
-
border-bottom-right-radius: 0;
|
131
|
-
|
132
|
-
|
133
|
-
left: 0;
|
134
|
-
top: 0;
|
135
|
-
|
136
|
-
z-index: 5
|
137
|
-
}
|
138
|
-
|
139
|
-
input {
|
140
|
-
width: 100%;
|
141
|
-
border-top-left-radius: 0;
|
142
|
-
border-bottom-left-radius: 0;
|
143
|
-
z-index: 4;
|
144
|
-
}
|
145
|
-
}
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
.input-small {
|
150
|
-
padding: 0.375rem;
|
151
|
-
width: 100%;
|
152
|
-
height: 2rem;
|
153
|
-
}
|
154
|
-
|
155
|
-
.input-radio-label {
|
156
|
-
display: flex;
|
157
|
-
width: 100%;
|
158
|
-
font-size: 0.875rem;
|
159
|
-
background: #f7f7f7;
|
160
|
-
border-radius: 0.5rem;
|
161
|
-
padding: 1rem;
|
162
|
-
|
163
|
-
.round {
|
164
|
-
display: flex;
|
165
|
-
justify-content: center;
|
166
|
-
align-items: center;
|
167
|
-
width: 1.5rem;
|
168
|
-
height: 1.5rem;
|
169
|
-
|
170
|
-
border-radius: 10rem;
|
171
|
-
background: #D3D3D3;
|
172
|
-
|
173
|
-
margin-right: 1rem;
|
174
|
-
|
175
|
-
div {
|
176
|
-
width: 0.5rem;
|
177
|
-
height: 0.5rem;
|
178
|
-
|
179
|
-
border-radius: 10rem;
|
180
|
-
background: white;
|
181
|
-
|
182
|
-
}
|
183
|
-
}
|
184
|
-
}
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
.input-checkbox {
|
189
|
-
position: relative;
|
190
|
-
width: 1.5rem;
|
191
|
-
height: 1.5rem;
|
192
|
-
|
193
|
-
border-radius: 0.5rem;
|
194
|
-
overflow: hidden;
|
195
|
-
|
196
|
-
img {
|
197
|
-
position: absolute;
|
198
|
-
|
199
|
-
height: 75%;
|
200
|
-
width: 75%;
|
201
|
-
|
202
|
-
left: calc(50% - 37.5%);
|
203
|
-
top: calc(50% - 37.5%);
|
204
|
-
|
205
|
-
z-index: 2;
|
206
|
-
}
|
207
|
-
input {
|
208
|
-
height: 100%;
|
209
|
-
width: 100%;
|
210
|
-
|
211
|
-
margin: 0;
|
212
|
-
|
213
|
-
border: none;
|
214
|
-
border-radius: 0.5rem;
|
215
|
-
|
216
|
-
background: white;
|
217
|
-
|
218
|
-
z-index: 1;
|
219
|
-
}
|
220
|
-
}
|
221
|
-
|
222
|
-
/* 1. Default input */
|
223
|
-
.input-default {
|
224
|
-
background-color: #f2f2f2;
|
225
|
-
border-radius: 20px;
|
226
|
-
border: none;
|
227
|
-
box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
|
228
|
-
padding: 10px;
|
229
|
-
font-size: 16px;
|
230
|
-
color: #333;
|
231
|
-
}
|
232
|
-
|
233
|
-
/* 2. Neon input */
|
234
|
-
.input-neon {
|
235
|
-
background-color: #1f1f1f;
|
236
|
-
border-radius: 10px;
|
237
|
-
border: none;
|
238
|
-
box-shadow: 0 0 10px #ff00f7, inset 0 0 5px rgba(0, 0, 0, 0.1);
|
239
|
-
padding: 10px;
|
240
|
-
font-size: 16px;
|
241
|
-
color: #fff;
|
242
|
-
}
|
243
|
-
|
244
|
-
/* 3. Gradient input */
|
245
|
-
.input-gradient {
|
246
|
-
background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
|
247
|
-
border-radius: 20px;
|
248
|
-
border: none;
|
249
|
-
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
|
250
|
-
padding: 10px;
|
251
|
-
font-size: 16px;
|
252
|
-
color: #fff;
|
253
|
-
}
|
254
|
-
|
255
|
-
/* 4. Flat input */
|
256
|
-
.input-flat {
|
257
|
-
background-color: #fff;
|
258
|
-
border-radius: 0px;
|
259
|
-
border: none;
|
260
|
-
box-shadow: none;
|
261
|
-
border-bottom: 2px solid #ccc;
|
262
|
-
padding: 10px;
|
263
|
-
font-size: 16px;
|
264
|
-
color: #333;
|
265
|
-
}
|
266
|
-
|
267
|
-
/* 5. Glass input */
|
268
|
-
.input-glass {
|
269
|
-
background-color: rgba(255, 255, 255, 0.5);
|
270
|
-
border-radius: 20px;
|
271
|
-
border: none;
|
272
|
-
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
|
273
|
-
padding: 10px;
|
274
|
-
font-size: 16px;
|
275
|
-
color: #333;
|
276
|
-
}
|
277
|
-
|
278
|
-
/* 6. Soft input */
|
279
|
-
.input-soft {
|
280
|
-
background-color: #fff;
|
281
|
-
border-radius: 20px;
|
282
|
-
border: none;
|
283
|
-
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
284
|
-
padding: 10px;
|
285
|
-
font-size: 16px;
|
286
|
-
color: #333;
|
287
|
-
}
|
288
|
-
|
289
|
-
/* 7. Underline input */
|
290
|
-
.input-underline {
|
291
|
-
background-color: transparent;
|
292
|
-
border-radius: 0px;
|
293
|
-
border: none;
|
294
|
-
box-shadow: none;
|
295
|
-
border-bottom: 2px solid #ccc;
|
296
|
-
padding: 10px;
|
297
|
-
font-size: 16px;
|
298
|
-
color: #333;
|
299
|
-
}
|
300
|
-
|
301
|
-
/* 8. Futuristic input */
|
302
|
-
.input-futuristic {
|
303
|
-
background-color: rgba(0, 0, 0, 0.5);
|
304
|
-
border-radius: 50px;
|
305
|
-
border: none;
|
306
|
-
box-shadow: 0px 0px 20px #00ff6a;
|
307
|
-
padding: 15px;
|
308
|
-
font-size: 16px;
|
309
|
-
color: #fff;
|
310
|
-
}
|
311
|
-
|
312
|
-
/* 9. Gradient underline input */
|
313
|
-
.input-gradient-underline {
|
314
|
-
background-color: transparent;
|
315
|
-
border-radius: 0px;
|
316
|
-
border: none;
|
317
|
-
box-shadow: none;
|
318
|
-
border-bottom: 2px solid #f21
|
319
|
-
}
|