GarGerry commited on
Commit
9a5179d
·
verified ·
1 Parent(s): 721be23

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +7 -30
style.css CHANGED
@@ -49,43 +49,20 @@ label {
49
  font-weight: bold;
50
  }
51
 
52
- input, /* General Select Styling */
53
- select {
54
- appearance: none; /* Hilangkan gaya default */
55
- -moz-appearance: none;
56
- -webkit-appearance: none;
57
- background-color: #001d57; /* Latar belakang biru gelap */
58
- color: #fff; /* Teks putih */
59
- border: 1px solid #87cefa;
60
- border-radius: 8px;
61
  padding: 12px;
62
  font-size: 16px;
63
- font-weight: bold;
64
- cursor: pointer;
65
- transition: border-color 0.3s ease, box-shadow 0.3s ease;
66
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
67
- background-repeat: no-repeat;
68
- background-position: right 12px center;
69
- background-size: 16px;
70
- }
71
-
72
- select:hover {
73
- border-color: #5faad7;
74
  }
75
 
76
- select:focus {
77
- border-color: #007bff;
78
- box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
79
  outline: none;
80
  }
81
 
82
- /* Dropdown Options Styling */
83
- option {
84
- background-color: #001d57; /* Warna latar dropdown */
85
- color: #fff; /* Warna teks dropdown */
86
- }
87
-
88
-
89
  /* Swap Button */
90
  .swap-group {
91
  text-align: center;
 
49
  font-weight: bold;
50
  }
51
 
52
+ input, select {
53
+ width: 100%;
 
 
 
 
 
 
 
54
  padding: 12px;
55
  font-size: 16px;
56
+ border: 1px solid #ddd;
57
+ border-radius: 8px;
58
+ transition: border-color 0.3s ease;
 
 
 
 
 
 
 
 
59
  }
60
 
61
+ input:focus, select:focus {
62
+ border-color: #87cefa;
 
63
  outline: none;
64
  }
65
 
 
 
 
 
 
 
 
66
  /* Swap Button */
67
  .swap-group {
68
  text-align: center;