-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (94 loc) · 1.77 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (94 loc) · 1.77 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
102
103
104
105
106
107
108
109
110
111
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
padding: 0;
margin: 0;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #343A40;
padding: 8px 16px;
box-sizing: content-box;
}
.left {
display: flex;
align-items: center;
}
.webName h1 {
font-weight: 400;
font-size: 20px;
color: white;
margin-right: 1rem;
}
.categ a {
text-decoration: none;
color: #ffffff80;
padding: 8px;
box-sizing: border-box;
}
.search input {
width: 180px;
height: 26px;
border: none;
border-radius: 5px;
padding: 6px 12px;
font-size: 16px;
}
.search button {
height: 37px;
width: 72px;
background-color: transparent;
border: 1px solid #28a745;
color: #28a745;
border-radius: 5px;
font-size: 16px;
}
.header {
text-align: center;
margin: 10px 0 20px 0;
}
.header h2 {
font-size: 32px;
font-weight: 500;
}
.cards {
width: 100vw;
display: flex;
justify-content: space-around;
flex-wrap: wrap
}
.card {
border: 0.5px solid rgba(0, 0, 0, 0.16);
border-radius: 5px;
margin: 0 30px 30px 30px;
height: fit-content;
}
.cards img {
width: 346.4px;
border-radius: 5px 5px 0 0;
}
.cards .card-body {
width: 306.4px;
padding: 20px;
}
.cards .card-body .card-title {
font-size: 20px;
font-weight: 500;
margin: 0 0 12px 0;
}
.cards .card-body .card-text {
margin: 0 0 16px 0;
}
.cards .card-body .card-age {
font-size: 12.8px;
margin: 0 0 12px 0;
opacity: 0.85;
}
.categ a:hover {
color: white;
}
button:hover {
background-color: #28a745;
color: white;
}