Aleksmorshen commited on
Commit
07ac4d8
·
verified ·
1 Parent(s): 2ebd750

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +69 -17
style.css CHANGED
@@ -1,28 +1,80 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f4f4f4;
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ .container {
9
+ max-width: 800px;
10
+ margin: 50px auto;
11
+ padding: 20px;
12
+ background-color: #fff;
13
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
14
  }
15
 
16
  h1 {
17
+ text-align: center;
18
+ color: #333;
19
+ }
20
+
21
+ form {
22
+ display: flex;
23
+ flex-direction: column;
24
+ gap: 10px;
25
+ margin-bottom: 20px;
26
+ }
27
+
28
+ input {
29
+ padding: 10px;
30
+ font-size: 16px;
31
+ border: 1px solid #ccc;
32
+ border-radius: 5px;
33
+ }
34
+
35
+ button {
36
+ padding: 10px;
37
+ font-size: 16px;
38
+ background-color: #28a745;
39
+ color: #fff;
40
+ border: none;
41
+ border-radius: 5px;
42
+ cursor: pointer;
43
  }
44
 
45
+ button:hover {
46
+ background-color: #218838;
 
 
 
47
  }
48
 
49
+ table {
50
+ width: 100%;
51
+ border-collapse: collapse;
52
+ margin-top: 20px;
 
 
53
  }
54
 
55
+ th, td {
56
+ padding: 12px;
57
+ text-align: left;
58
+ border-bottom: 1px solid #ddd;
59
  }
60
+
61
+ th {
62
+ background-color: #f8f9fa;
63
+ }
64
+
65
+ tr:hover {
66
+ background-color: #f1f1f1;
67
+ }
68
+
69
+ .sell-btn {
70
+ background-color: #dc3545;
71
+ color: #fff;
72
+ border: none;
73
+ padding: 5px 10px;
74
+ border-radius: 3px;
75
+ cursor: pointer;
76
+ }
77
+
78
+ .sell-btn:hover {
79
+ background-color: #c82333;
80
+ }