-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.css
More file actions
63 lines (63 loc) · 1.16 KB
/
all.css
File metadata and controls
63 lines (63 loc) · 1.16 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
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #f9f9f9;
color: #333;
}
h1 {
text-align: center;
margin-bottom: 30px;
color: #3D5A80;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
border: 1px solid #ccc;
padding: 15px;
margin-bottom: 15px;
border-radius: 10px;
background: white;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
a {
font-weight: bold;
font-size: 1.1em;
color: #293241;
text-decoration: none;
display: block;
margin-bottom: 10px;
}
.keywords-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.keyword {
background-color: #E0FBFC;
color: #3D5A80;
padding: 5px 12px;
border-radius: 15px;
font-size: 0.9em;
}
.search-container {
margin-bottom: 25px;
text-align: center;
}
#search-bar {
width: 80%;
padding: 10px;
font-size: 1em;
border-radius: 20px;
border: 1px solid #ccc;
font-family: 'Comic Sans MS', cursive, sans-serif;
}
.highlighted {
border: 3px solid #ff69b4 !important; /* Make it pink and important! */
transform: scale(1.02);
transition: all 0.3s ease;
}