-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (77 loc) · 1.46 KB
/
styles.css
File metadata and controls
91 lines (77 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 10px;
background-color: #f7f7f7;
display: flex;
flex-direction: column;
align-items: center;
width: 300px;
}
#buttonContainer {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 10px;
}
button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
input[type="text"], button {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
button {
background-color: #5c6bc0;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #3f51b5;
}
#searchInput {
width: calc(100% - 20px);
margin-bottom: 10px;
}
#searchButton {
width: calc(100% - 20px);
}
#loginButton, #lowerPricesButton {
width: calc(50% - 5px);
}
#data {
width: calc(100% - 20px);
margin-top: 20px;
font-size: 14px;
color: #333;
background-color: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
min-height: 50px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
}
th {
background-color: #5c6bc0;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #e1e1e1;
}