GarGerry commited on
Commit
b2f627e
·
verified ·
1 Parent(s): bf8428b

Update Backup-css

Browse files
Files changed (1) hide show
  1. Backup-css +107 -0
Backup-css CHANGED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ body {
8
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
9
+ background: linear-gradient(135deg, #F3F4F9, #C9D6E3);
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ height: 100vh;
14
+ color: #333;
15
+ position: relative; /* Agar watermark terletak di atas background */
16
+ }
17
+
18
+ .container {
19
+ background: #ffffff;
20
+ border-radius: 15px;
21
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
22
+ padding: 40px;
23
+ width: 350px;
24
+ text-align: center;
25
+ position: relative; /* Agar watermark tidak mengganggu elemen di dalam container */
26
+ }
27
+
28
+ h1 {
29
+ font-size: 26px;
30
+ margin-bottom: 20px;
31
+ color: #2D3A3A;
32
+ font-weight: 600;
33
+ }
34
+
35
+ input, select {
36
+ padding: 12px;
37
+ margin: 10px 0;
38
+ width: 100%;
39
+ font-size: 16px;
40
+ border-radius: 8px;
41
+ border: 1px solid #E0E0E0;
42
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
43
+ transition: all 0.3s ease;
44
+ }
45
+
46
+ input:focus, select:focus {
47
+ border: 1px solid #4CAF50;
48
+ outline: none;
49
+ box-shadow: 0 0 8px rgba(0, 180, 50, 0.2);
50
+ }
51
+
52
+ .currency-selectors {
53
+ display: flex;
54
+ justify-content: center;
55
+ align-items: center;
56
+ gap: 10px;
57
+ }
58
+
59
+ span {
60
+ font-size: 18px;
61
+ font-weight: 500;
62
+ color: #555;
63
+ }
64
+
65
+ button {
66
+ padding: 12px 20px;
67
+ background-color: #4CAF50;
68
+ color: white;
69
+ border: none;
70
+ border-radius: 8px;
71
+ width: 100%;
72
+ font-size: 18px;
73
+ font-weight: 600;
74
+ cursor: pointer;
75
+ transition: background-color 0.3s ease;
76
+ }
77
+
78
+ button:hover {
79
+ background-color: #45a049;
80
+ }
81
+
82
+ #result {
83
+ margin-top: 20px;
84
+ font-size: 20px;
85
+ font-weight: bold;
86
+ color: #333;
87
+ text-transform: uppercase;
88
+ }
89
+
90
+ /* Watermark dengan Copyright */
91
+ body::after {
92
+ content: "© 2025 Powered by Teggar";
93
+ font-size: 16px;
94
+ font-weight: 400;
95
+ color: rgba(0, 0, 0, 0.2); /* Transparansi untuk watermark */
96
+ position: absolute;
97
+ bottom: 20px;
98
+ left: 50%;
99
+ transform: translateX(-50%);
100
+ z-index: -1; /* Agar watermark berada di belakang konten */
101
+ opacity: 0.5; /* Efek transparansi */
102
+ pointer-events: none; /* Agar watermark tidak menghalangi interaksi dengan elemen lain */
103
+ user-select: none;
104
+ letter-spacing: 2px;
105
+ text-transform: uppercase;
106
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
107
+ }