-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (82 loc) · 1.5 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
html,
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: rgb(225, 219, 236);
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
width: 90%;
margin: 0 auto;
}
.card {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
h1 {
text-align: center;
font-size: 48px;
color: rgb(4, 4, 92);
}
h3 {
margin: 0;
margin-top: 15px;
height: 35px;
}
h5 {
font-weight: 500;
font-size: 16px;
text-align: left;
border-top: 2px solid #8e5cff;
padding-top: 20px;
}
ul {
/* display: block; */
width: 480px;
height: 650px;
margin: 15px;
padding: 20px 40px;
list-style: none;
background: rgb(255, 255, 255);
-webkit-box-shadow: 12px -5px 15px 5px #80c7ff, 12px 10px 15px 7px #e488ff,
-10px -7px 27px 1px #8e5cff, -50px -50px 0px -30px rgba(255, 71, 71, 0);
box-shadow: 12px -5px 15px 5px #80c7ff, 12px 10px 15px 7px #e488ff,
-10px -7px 27px 1px #8e5cff, -50px -50px 0px -30px rgba(255, 71, 71, 0);
border-radius: 10px;
}
li {
justify-content: center;
align-items: center;
text-align: center;
}
img {
background-size: contain;
height: 300px;
}
.filters {
display: flex;
justify-content: center;
margin-bottom: 25px;
}
button {
min-width: 10%;
padding: 20px 0;
margin: 20px;
border: 2px solid #8e5cff;
border-radius: 10px;
font-size: 24px;
transition: 0.3s;
}
button:hover {
background-color: #af8dff;
cursor: pointer;
font-weight: 700;
}