-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathstyles.css
81 lines (69 loc) · 1.28 KB
/
styles.css
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
body {
font-family: Arial, sans-serif;
height: 100vh;
background-image: linear-gradient(to top, #37ecba 0%, #72afd3 100%);
margin: 0;
padding: 0;
overflow: hidden;
}
.container {
max-width: 800px;
margin: 5rem auto 0;
padding: 20px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
h1, h2 {
text-align: center;
}
.search-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
input {
width: 300px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
border-right: none;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#results {
max-height: 400px;
overflow-y: auto;
border: 1px solid #ccc;
padding: 10px;
border-radius: 4px;
}
.package {
margin: 10px 0;
padding: 10px;
border-bottom: 1px solid #ccc;
}
.package h3 {
margin: 0;
}
.package p {
margin: 5px 0;
}
.package a {
text-decoration: none;
color: #007bff;
}
.package a:hover {
text-decoration: underline;
}