GarGerry commited on
Commit
97bf4c9
·
verified ·
1 Parent(s): b552039

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +44 -16
style.css CHANGED
@@ -5,45 +5,72 @@
5
  }
6
 
7
  body {
8
- font-family: Arial, sans-serif;
9
- background-color: #f4f4f9;
10
  display: flex;
11
  justify-content: center;
12
  align-items: center;
13
  height: 100vh;
 
14
  }
15
 
16
  .container {
17
- background-color: white;
18
- padding: 20px;
19
- border-radius: 10px;
20
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
21
- width: 300px;
22
  text-align: center;
23
  }
24
 
25
  h1 {
26
- font-size: 24px;
27
  margin-bottom: 20px;
 
 
28
  }
29
 
30
  input, select {
31
- padding: 10px;
32
  margin: 10px 0;
33
- width: 80%;
34
  font-size: 16px;
35
- border: 1px solid #ccc;
36
- border-radius: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
38
 
39
  button {
40
- padding: 10px 15px;
41
- width: 80%;
42
  background-color: #4CAF50;
43
  color: white;
44
  border: none;
45
- border-radius: 5px;
 
 
 
46
  cursor: pointer;
 
47
  }
48
 
49
  button:hover {
@@ -52,7 +79,8 @@ button:hover {
52
 
53
  #result {
54
  margin-top: 20px;
55
- font-size: 18px;
56
  font-weight: bold;
57
  color: #333;
 
58
  }
 
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
  }
16
 
17
  .container {
18
+ background: #ffffff;
19
+ border-radius: 15px;
20
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
21
+ padding: 40px;
22
+ width: 350px;
23
  text-align: center;
24
  }
25
 
26
  h1 {
27
+ font-size: 26px;
28
  margin-bottom: 20px;
29
+ color: #2D3A3A;
30
+ font-weight: 600;
31
  }
32
 
33
  input, select {
34
+ padding: 12px;
35
  margin: 10px 0;
36
+ width: 100%;
37
  font-size: 16px;
38
+ border-radius: 8px;
39
+ border: 1px solid #E0E0E0;
40
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
41
+ transition: all 0.3s ease;
42
+ }
43
+
44
+ input:focus, select:focus {
45
+ border: 1px solid #4CAF50;
46
+ outline: none;
47
+ box-shadow: 0 0 8px rgba(0, 180, 50, 0.2);
48
+ }
49
+
50
+ .currency-selectors {
51
+ display: flex;
52
+ justify-content: center;
53
+ align-items: center;
54
+ gap: 10px;
55
+ }
56
+
57
+ span {
58
+ font-size: 18px;
59
+ font-weight: 500;
60
+ color: #555;
61
  }
62
 
63
  button {
64
+ padding: 12px 20px;
 
65
  background-color: #4CAF50;
66
  color: white;
67
  border: none;
68
+ border-radius: 8px;
69
+ width: 100%;
70
+ font-size: 18px;
71
+ font-weight: 600;
72
  cursor: pointer;
73
+ transition: background-color 0.3s ease;
74
  }
75
 
76
  button:hover {
 
79
 
80
  #result {
81
  margin-top: 20px;
82
+ font-size: 20px;
83
  font-weight: bold;
84
  color: #333;
85
+ text-transform: uppercase;
86
  }