-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
92 lines (87 loc) · 1.26 KB
/
index.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
* {
padding: 0;
margin: 0;
}
body {
background: linear-gradient(90deg, #abf8e7, #8778c7);
}
.wrapper {
max-width: 960px;
margin: 0 auto;
}
.logo-wrapper {
width: 200px;
margin: 0 auto;
padding-top: 10px;
}
.naruto-logo {
width: 100%;
}
.cards {
display: flex;
flex-wrap: wrap;
gap: 10px;
width: 100%;
justify-content: center;
}
.card {
transition: 0.2s;
}
.card:hover {
cursor: pointer;
}
.card-img-wrapper {
width: 300px;
height: 200px;
border-style: solid;
border-radius: 6px;
transition: 0.4s;
}
.card-img-wrapper:hover {
transform: scale(1.04);
}
.card-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.btns {
padding-top: 25px;
padding-bottom: 25px;
display: flex;
gap: 25px;
width: 100%;
justify-content: center;
}
.btn {
border: none;
border-radius: 2px;
padding: 10px 25px;
opacity: 0.8;
transition: 0.4s;
}
.btn:hover {
cursor: pointer;
opacity: 1;
}
.btn:active {
background-color: #499a18;
border: 1px solid #499a18;
}
.btn[disabled] {
border: 1px solid #999999;
background-color: #cccccc;
color: #666666;
cursor: not-allowed;
}
.btn--active {
color: #fff;
background-color: #e06733;
}
.blur {
filter: blur(2px);
}
.clear {
filter: blur(0px);
}