-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (99 loc) · 1.68 KB
/
style.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#search-container {
margin-top: 50px;
text-align: center;
}
hr {
border: none;
height: 2px;
background-color: #007bff;
margin-bottom: 50px;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 36px;
font-weight: bold;
margin-top: 30px;
margin-bottom: 20px;
color: #007bff;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
form {
margin-top: 30px;
text-align: center;
}
label {
font-size: 24px;
font-weight: bold;
margin-right: 10px;
}
input[type="text"] {
width: 500px;
padding: 10px;
font-size: 18px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 10px;
}
input[type="submit"] {
padding: 10px 20px;
font-size: 18px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
#search-terms {
margin-top: 50px;
text-align: center;
}
h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
color: #007bff;
text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
li {
font-size: 20px;
margin: 5px;
padding: 5px 10px;
background-color: #f5f5f5;
border-radius: 20px;
text-align: center;
box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
/* Add styling for divider */
#search-container {
background-color: #f5f5f5;
padding-bottom: 20px;
margin-bottom: 20px;
}
hr {
border: none;
height: 1px;
background-color: #ccc;
margin: 0;
}