appscms-tools-theme 5.0.7 → 5.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2946,3 +2946,514 @@ select:focus {
2946
2946
  width: 25px;
2947
2947
  margin-right: 5px;
2948
2948
  }
2949
+ /* Login System */
2950
+ .login-modal-button {
2951
+ border: none;
2952
+ background-color: #fff;
2953
+ font-size: 14px;
2954
+ padding: 0px 0px 0px 25px;
2955
+ }
2956
+ <style > .side-modal-overlay {
2957
+ position: fixed;
2958
+ top: 0;
2959
+ left: 0;
2960
+ width: 100%;
2961
+ height: 100%;
2962
+ background-color: rgba(0, 0, 0, 0.5);
2963
+ display: none;
2964
+ z-index: 100;
2965
+ }
2966
+
2967
+ .side-modal {
2968
+ position: fixed;
2969
+ z-index: 10000;
2970
+ top: 0;
2971
+ right: -90%; /* Start off-screen */
2972
+ width: 90%;
2973
+ height: 100%;
2974
+ background-color: white;
2975
+ box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
2976
+ transition: right 0.3s ease-in-out;
2977
+ overflow-y: auto;
2978
+ }
2979
+
2980
+ .modal-header {
2981
+ display: flex;
2982
+ justify-content: space-between;
2983
+ align-items: center;
2984
+ padding: 20px;
2985
+ border-bottom: 1px solid #eee;
2986
+ }
2987
+
2988
+ .modal-title {
2989
+ font-size: 24px;
2990
+ font-weight: bold;
2991
+ color: #333;
2992
+ }
2993
+
2994
+ .close-modal-btn {
2995
+ background: none;
2996
+ border: none;
2997
+ font-size: 24px;
2998
+ cursor: pointer;
2999
+ color: #666;
3000
+ }
3001
+
3002
+ .modal-content {
3003
+ padding: 20px;
3004
+ }
3005
+
3006
+ .modal-body {
3007
+ margin-bottom: 20px;
3008
+ }
3009
+
3010
+ .modal-footer {
3011
+ padding: 15px 20px;
3012
+ border-top: 1px solid #eee;
3013
+ text-align: right;
3014
+ }
3015
+
3016
+ .auth-container {
3017
+ background-color: white;
3018
+ border-radius: 8px;
3019
+ padding: 30px;
3020
+ width: 400px;
3021
+ max-width: 90%;
3022
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
3023
+ }
3024
+
3025
+ h1 {
3026
+ text-align: center;
3027
+ font-size: 28px;
3028
+ margin-bottom: 10px;
3029
+ }
3030
+
3031
+ h2 {
3032
+ text-align: center;
3033
+ font-size: 16px;
3034
+ font-weight: normal;
3035
+ color: #555;
3036
+ margin-bottom: 30px;
3037
+ }
3038
+
3039
+ a {
3040
+ color: #1b2de7;
3041
+ text-decoration: none;
3042
+ }
3043
+
3044
+ a:hover {
3045
+ text-decoration: underline;
3046
+ }
3047
+
3048
+ .social-btn {
3049
+ display: flex;
3050
+ align-items: center;
3051
+ width: 100%;
3052
+ padding: 12px;
3053
+ border: none;
3054
+ border-radius: 4px;
3055
+ font-size: 16px;
3056
+ margin-bottom: 10px;
3057
+ cursor: pointer;
3058
+ color: white;
3059
+ text-align: center;
3060
+ }
3061
+
3062
+ .google-btn {
3063
+ background-color: #4884ed;
3064
+ }
3065
+ .google-btn svg {
3066
+ background-color: #fff;
3067
+ border-radius: 30px;
3068
+ padding: 3px;
3069
+ }
3070
+
3071
+ .facebook-btn {
3072
+ background-color: #3c5997;
3073
+ }
3074
+
3075
+ .or-divider {
3076
+ display: flex;
3077
+ align-items: center;
3078
+ text-align: center;
3079
+ margin: 20px 0;
3080
+ color: #777;
3081
+ }
3082
+
3083
+ .or-divider::before,
3084
+ .or-divider::after {
3085
+ content: "";
3086
+ flex: 1;
3087
+ border-bottom: 1px solid #ddd;
3088
+ }
3089
+
3090
+ .or-divider::before {
3091
+ margin-right: 10px;
3092
+ }
3093
+
3094
+ .or-divider::after {
3095
+ margin-left: 10px;
3096
+ }
3097
+
3098
+ .input-group {
3099
+ position: relative;
3100
+ margin-bottom: 15px;
3101
+ }
3102
+
3103
+ .input-group input {
3104
+ width: 100%;
3105
+ padding: 12px 40px 12px 40px;
3106
+ border: 1px solid #ddd;
3107
+ border-radius: 4px;
3108
+ font-size: 16px;
3109
+ box-sizing: border-box;
3110
+ }
3111
+
3112
+ .input-group i {
3113
+ position: absolute;
3114
+ left: 12px;
3115
+ top: 50%;
3116
+ transform: translateY(-50%);
3117
+ color: #777;
3118
+ }
3119
+
3120
+ .password-toggle {
3121
+ position: absolute;
3122
+ right: 12px;
3123
+ top: 50%;
3124
+ transform: translateY(-50%);
3125
+ color: #777;
3126
+ cursor: pointer;
3127
+ }
3128
+
3129
+ .login-btn {
3130
+ width: 100%;
3131
+ padding: 12px;
3132
+ background-color: #1b2de7;
3133
+ color: white;
3134
+ border: none;
3135
+ border-radius: 4px;
3136
+ font-size: 16px;
3137
+ cursor: pointer;
3138
+ margin-bottom: 15px;
3139
+ }
3140
+
3141
+ .forgot-password {
3142
+ text-align: center;
3143
+ margin-top: 15px;
3144
+ }
3145
+
3146
+ .user-profile {
3147
+ display: none;
3148
+ text-align: center;
3149
+ }
3150
+
3151
+ .avatar {
3152
+ width: 100px;
3153
+ height: 100px;
3154
+ background-color: #ff9800;
3155
+ border-radius: 50%;
3156
+ display: flex;
3157
+ justify-content: center;
3158
+ align-items: center;
3159
+ margin: 0 auto 20px;
3160
+ color: white;
3161
+ font-size: 28px;
3162
+ font-weight: bold;
3163
+ }
3164
+
3165
+ .menu-item {
3166
+ display: flex;
3167
+ align-items: center;
3168
+ padding: 15px;
3169
+ border-bottom: 1px solid #eee;
3170
+ }
3171
+
3172
+ .menu-item:last-child {
3173
+ border-bottom: none;
3174
+ }
3175
+
3176
+ .menu-item i {
3177
+ margin-right: 10px;
3178
+ color: #555;
3179
+ }
3180
+
3181
+ .menu-item span {
3182
+ flex: 1;
3183
+ }
3184
+
3185
+ .menu-item .arrow {
3186
+ color: #999;
3187
+ }
3188
+
3189
+ /* Icons */
3190
+ .icon {
3191
+ width: 24px;
3192
+ height: 24px;
3193
+ display: inline-block;
3194
+ margin-right: 10px;
3195
+ }
3196
+
3197
+ .google-icon {
3198
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none"><path fill="#4285F4" d="M21.533 12.187c0-.82-.067-1.417-.21-2.037h-9.357v3.698h5.492c-.11.92-.709 2.303-2.038 3.233l-.018.124 2.958 2.292.205.02c1.882-1.738 2.968-4.296 2.968-7.33"></path><path fill="#34A853" d="M11.966 21.931c2.69 0 4.95-.886 6.6-2.414l-3.146-2.436c-.841.587-1.97.997-3.454.997-2.636 0-4.872-1.739-5.67-4.141l-.117.01-3.076 2.38-.04.112a9.96 9.96 0 0 0 8.903 5.492"></path><path fill="#FBBC05" d="M6.296 13.937a6.1 6.1 0 0 1-.332-1.971c0-.687.122-1.351.321-1.971l-.005-.132-3.115-2.42-.102.05A10 10 0 0 0 2 11.965a10 10 0 0 0 1.063 4.473z"></path><path fill="#EB4335" d="M11.966 5.853c1.87 0 3.133.809 3.853 1.484l2.813-2.746C16.904 2.985 14.656 2 11.966 2a9.96 9.96 0 0 0-8.903 5.492l3.222 2.503c.809-2.403 3.045-4.142 5.68-4.142"></path></g></svg>');
3199
+ }
3200
+
3201
+ .facebook-icon {
3202
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="white" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-7H9v-2h2V8.5C11 7.12 12.12 6 13.5 6H16v2h-2c-.55 0-1 .45-1 1v1h3v2h-3v7z"/></svg>');
3203
+ }
3204
+
3205
+ .email-icon {
3206
+ position: absolute;
3207
+ top: 10px;
3208
+ left: 10px;
3209
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
3210
+ }
3211
+
3212
+ .password-icon {
3213
+ position: absolute;
3214
+ top: 10px;
3215
+ left: 10px;
3216
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
3217
+ }
3218
+
3219
+ .eye-icon {
3220
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
3221
+ }
3222
+
3223
+ /* User avatar in corner */
3224
+ .user-avatar {
3225
+ position: absolute;
3226
+ top: 20px;
3227
+ right: 20px;
3228
+ width: 40px;
3229
+ height: 40px;
3230
+ border-radius: 50%;
3231
+ background-color: #1b2de7;
3232
+ color: white;
3233
+ display: flex;
3234
+ justify-content: center;
3235
+ align-items: center;
3236
+ font-weight: bold;
3237
+ cursor: pointer;
3238
+ }
3239
+
3240
+ .google-btn svg {
3241
+ width: 24px;
3242
+ height: 24px;
3243
+ display: inline-block;
3244
+ margin-right: 10px;
3245
+ }
3246
+
3247
+ /* Forgot password form */
3248
+ #forgotPasswordForm {
3249
+ display: none;
3250
+ }
3251
+
3252
+ .back-btn {
3253
+ display: flex;
3254
+ align-items: center;
3255
+ margin-bottom: 20px;
3256
+ cursor: pointer;
3257
+ color: #1b2de7;
3258
+ font-size: 14px;
3259
+ }
3260
+
3261
+ .back-btn:hover {
3262
+ text-decoration: underline;
3263
+ }
3264
+
3265
+ .back-icon {
3266
+ margin-right: 8px;
3267
+ }
3268
+
3269
+ .reset-success {
3270
+ text-align: center;
3271
+ background-color: #e8f4ff;
3272
+ padding: 15px;
3273
+ border-radius: 4px;
3274
+ margin-top: 15px;
3275
+ display: none;
3276
+ }
3277
+
3278
+ .success-icon {
3279
+ color: #1b2de7;
3280
+ font-size: 24px;
3281
+ margin-bottom: 10px;
3282
+ }
3283
+ .twitter-btn {
3284
+ background-color: #000000;
3285
+ }
3286
+
3287
+ .twitter-btn svg {
3288
+ width: 24px;
3289
+ height: 24px;
3290
+ display: inline-block;
3291
+ margin-right: 10px;
3292
+ }
3293
+
3294
+ .user-modal-header {
3295
+ position: fixed;
3296
+ top: 0;
3297
+ left: 0;
3298
+ right: 0;
3299
+ height: 70px;
3300
+ background-color: white;
3301
+ display: flex;
3302
+ align-items: center;
3303
+ justify-content: flex-end;
3304
+ padding: 0 20px;
3305
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
3306
+ }
3307
+
3308
+ .free-trial {
3309
+ display: flex;
3310
+ align-items: center;
3311
+ padding: 8px 16px;
3312
+ border: 1px solid #ddd;
3313
+ border-radius: 4px;
3314
+ margin-right: 20px;
3315
+ background-color: white;
3316
+ }
3317
+
3318
+ .crown-icon {
3319
+ color: #f9c74f;
3320
+ font-size: 24px;
3321
+ margin-right: 10px;
3322
+ }
3323
+ .user-profile-header {
3324
+ padding: 0px 0px 0px 20px;
3325
+ display: none;
3326
+ }
3327
+ .profile-button {
3328
+ width: 40px;
3329
+ height: 40px;
3330
+
3331
+ border-radius: 50%;
3332
+ background-color: var(--primary-color);
3333
+ color: white;
3334
+ display: flex;
3335
+ justify-content: center;
3336
+ align-items: center;
3337
+ cursor: pointer;
3338
+ font-weight: bold;
3339
+ position: relative;
3340
+ }
3341
+
3342
+ .dropdown-icon {
3343
+ position: absolute;
3344
+ bottom: -5px;
3345
+ right: -5px;
3346
+ font-size: 10px;
3347
+ background-color: white;
3348
+ border-radius: 50%;
3349
+ width: 14px;
3350
+ height: 14px;
3351
+ display: flex;
3352
+ justify-content: center;
3353
+ align-items: center;
3354
+ color: black;
3355
+ }
3356
+
3357
+ .user-modal {
3358
+ position: absolute;
3359
+ top: 55px;
3360
+ right: 0px;
3361
+ width: 300px;
3362
+ background-color: white;
3363
+ border-radius: 8px;
3364
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
3365
+ display: none;
3366
+ overflow: hidden;
3367
+ }
3368
+
3369
+ .user-modal-header {
3370
+ padding: 20px;
3371
+ display: flex;
3372
+ align-items: center;
3373
+ }
3374
+
3375
+ .profile-user-avatar {
3376
+ width: 60px;
3377
+ height: 60px;
3378
+ border-radius: 50%;
3379
+ background-color: var(--primary-color);
3380
+ color: white;
3381
+ display: flex;
3382
+ justify-content: center;
3383
+ align-items: center;
3384
+ font-weight: bold;
3385
+ font-size: 24px;
3386
+ margin-right: 20px;
3387
+ }
3388
+
3389
+ .user-info h2 {
3390
+ font-size: 18px;
3391
+ margin-bottom: 5px;
3392
+ }
3393
+
3394
+ .user-info p {
3395
+ font-size: 14px;
3396
+ color: #777;
3397
+ overflow: hidden;
3398
+ text-overflow: ellipsis;
3399
+ }
3400
+
3401
+ .modal-item {
3402
+ display: flex;
3403
+ align-items: center;
3404
+ padding: 20px;
3405
+ border-top: 1px solid #eee;
3406
+ transition: background-color 0.2s;
3407
+ cursor: pointer;
3408
+ }
3409
+
3410
+ .modal-item:hover {
3411
+ background-color: #f7f7f7;
3412
+ }
3413
+
3414
+ .item-icon {
3415
+ margin-right: 20px;
3416
+ font-size: 20px;
3417
+ min-width: 24px;
3418
+ text-align: center;
3419
+ }
3420
+
3421
+ .item-text {
3422
+ flex-grow: 1;
3423
+ }
3424
+ .item-text a {
3425
+ color: #000000;
3426
+ text-decoration: none;
3427
+ }
3428
+ .item-arrow svg {
3429
+ height: 13px;
3430
+ width: 13px;
3431
+ }
3432
+
3433
+ .upload-button {
3434
+ position: fixed;
3435
+ bottom: 20px;
3436
+ left: 20px;
3437
+ width: 50px;
3438
+ height: 50px;
3439
+ border-radius: 8px;
3440
+ background-color: #2962ff;
3441
+ color: white;
3442
+ display: flex;
3443
+ flex-direction: column;
3444
+ justify-content: center;
3445
+ align-items: center;
3446
+ cursor: pointer;
3447
+ }
3448
+
3449
+ .upload-icon {
3450
+ font-size: 24px;
3451
+ margin-bottom: 2px;
3452
+ }
3453
+
3454
+ .upload-button span {
3455
+ font-size: 10px;
3456
+ }
3457
+ .auth-container a {
3458
+ justify-content: center;
3459
+ }
@@ -0,0 +1,9 @@
1
+ const firebaseConfig = {
2
+ apiKey: "AIzaSyCLMq0zLfhR5LkHvjQI3D5yNllHMkiaNrE",
3
+ authDomain: "appscms-399eb.firebaseapp.com",
4
+ projectId: "appscms-399eb",
5
+ storageBucket: "appscms-399eb.firebasestorage.app",
6
+ messagingSenderId: "452535998358",
7
+ appId: "1:452535998358:web:558123baa247c3735c6fb7",
8
+ measurementId: "G-0RZGJ24CZV",
9
+ };