GarGerry commited on
Commit
e732712
·
verified ·
1 Parent(s): d0d4dd4

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +14 -9
style.css CHANGED
@@ -43,9 +43,9 @@ input, select {
43
  border: 1px solid #E0E0E0;
44
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
45
  transition: all 0.3s ease;
46
- appearance: none;
47
- -webkit-appearance: none;
48
- -moz-appearance: none;
49
  background-color: #fff;
50
  color: #555;
51
  }
@@ -56,14 +56,16 @@ input:focus, select:focus {
56
  box-shadow: 0 0 8px rgba(0, 180, 50, 0.2);
57
  }
58
 
 
59
  select {
60
- background-image: url('https://img.icons8.com/ios/452/down-squared.png');
61
  background-repeat: no-repeat;
62
  background-position: right 10px center;
63
  background-size: 16px;
64
- padding-right: 40px;
65
  }
66
 
 
67
  .currency-selectors {
68
  display: flex;
69
  justify-content: center;
@@ -106,23 +108,25 @@ button:hover {
106
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
107
  }
108
 
 
109
  body::after {
110
- content: "© 2025 Teggar Eka Mustaqim Sitanggang";
111
  font-size: 16px;
112
  font-weight: 400;
113
- color: rgba(0, 0, 0, 0.2);
114
  position: absolute;
115
  bottom: 20px;
116
  left: 50%;
117
  transform: translateX(-50%);
118
  z-index: -1;
119
- opacity: 0.5;
120
  pointer-events: none;
121
  user-select: none;
122
- letter-spacing: 2px;
123
  text-transform: uppercase;
124
  }
125
 
 
126
  @media (max-width: 768px) {
127
  .container {
128
  padding: 30px;
@@ -142,6 +146,7 @@ body::after {
142
  }
143
  }
144
 
 
145
  @media (min-width: 769px) {
146
  .container {
147
  max-width: 700px;
 
43
  border: 1px solid #E0E0E0;
44
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
45
  transition: all 0.3s ease;
46
+ appearance: none; /* Menghapus tampilan default dropdown */
47
+ -webkit-appearance: none; /* Untuk Safari */
48
+ -moz-appearance: none; /* Untuk Firefox */
49
  background-color: #fff;
50
  color: #555;
51
  }
 
56
  box-shadow: 0 0 8px rgba(0, 180, 50, 0.2);
57
  }
58
 
59
+ /* Gaya untuk elemen select agar lebih modern */
60
  select {
61
+ background-image: url('https://img.icons8.com/ios/452/down-squared.png'); /* Ikon dropdown */
62
  background-repeat: no-repeat;
63
  background-position: right 10px center;
64
  background-size: 16px;
65
+ padding-right: 40px; /* Memberikan ruang untuk ikon di kanan */
66
  }
67
 
68
+ /* Styling untuk selector mata uang */
69
  .currency-selectors {
70
  display: flex;
71
  justify-content: center;
 
108
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
109
  }
110
 
111
+ /* Watermark dengan Copyright */
112
  body::after {
113
+ content: "Copyright © 2025 Teggar Eka Mustaqim Sitanggang";
114
  font-size: 16px;
115
  font-weight: 400;
116
+ color: rgba(0, 0, 0, 0.6); /* Menyesuaikan warna agar lebih jelas */
117
  position: absolute;
118
  bottom: 20px;
119
  left: 50%;
120
  transform: translateX(-50%);
121
  z-index: -1;
122
+ opacity: 0.7; /* Menyesuaikan opasitas agar tidak terlalu dominan */
123
  pointer-events: none;
124
  user-select: none;
125
+ letter-spacing: 1px; /* Mengurangi jarak antar huruf */
126
  text-transform: uppercase;
127
  }
128
 
129
+ /* Responsif untuk Mobile */
130
  @media (max-width: 768px) {
131
  .container {
132
  padding: 30px;
 
146
  }
147
  }
148
 
149
+ /* Responsif untuk tampilan yang lebih besar (Tablet ke atas) */
150
  @media (min-width: 769px) {
151
  .container {
152
  max-width: 700px;