-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (78 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (78 loc) · 1.36 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
body{
font-family: 'Poppins', sans-serif;
background: #222;
color: #fff;
padding: 3em 1em 1em 1em;
}
h1{
text-align: center;
font-size: 2.5em;
}
.search-bar{
margin: 1em auto;
background: #3d383c;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1em;
max-width: 500px;
border-radius: 8px;
padding: 0 1em;
color: #fff;
}
.search-bar input{
flex-grow: 1;
height: 100%;
padding: 0.5em 0;
background: none;
border: none;
color: #fff;
font-size: 1.3em;
}
.search-bar input::placeholder{
color: #b7b7b7;
}
.search-bar input:focus{
outline: none;
}
.panels{
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5em;
margin: 8em 0 5em 0;
}
.panel{
background: #3b383b;
padding: 1.5em 1.8em 1.5em 1.8em;
max-width: 300px;
border-radius: 8px;
}
.panel .material-symbols-outlined{
width: 1.6em;
height: 1.6em;
color: #111;
background: #fff82a;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
}
.panel h2{
margin: 1em 0 0.5em 0;
}
.panel p{
font-size: 0.9em;
line-height: 25px;
color: #ccc;
margin: 0;
}
.panel a{
display: inline-block;
color: #fff;
margin-top: 1em;
}
.panel a:hover{
color: #fff82a;
}