-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (93 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (93 loc) · 1.71 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
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
padding: 0;
border-radius: 0%;
font-family: Arial, Helvetica, sans-serif;
}
/* Style for the header */
nav {
background-color: #333;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav__title {
font-size: 24px;
font-weight: bold;
color: #aeeb5f;
}
.nav__search input {
padding: 5px;
border: none;
border-radius: 4px;
}
.nav__search button {
padding: 5px 10px;
border: none;
background-color: #555;
color: white;
border-radius: 4px;
cursor: pointer;
transition: 1000ms;
}
.nav__search button:hover {
background-color: #aeeb5f;
}
/* Style for the main content */
.main__search {
display: flex;
justify-content: center;
align-items: center;
height: 40vh;
background-color: #f4f4f4;
background-image: url("assets/background.jpeg");
background-size: cover;
background-position: center;
}
.search__input {
background-color: #aeeb5f;
padding: 15px;
font-size: 18px;
border: 2px solid #64cb47;
border-radius: 20px;
width: 300px;
}
.anime__cards{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.anime__card {
display: flex;
flex-direction: column;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 16px;
margin: 16px;
width: 250px;
height: 400px;
transition: 0.3s;
}
.anime__card:hover {
background-color: #c0f7b1;
box-shadow: 0 4px 8px rgba(96, 60, 60, 0.2);
}
.anime__img{
width: 100%;
height: 240px;
border-radius: 4px;
margin-bottom: 12px;
}
h3{
font-size: 20px;
color: #333;
margin-bottom: 8px;
}
p{
font-size: 14px;
color: #666;
margin-bottom: 8px;
}