-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
44 lines (42 loc) · 829 Bytes
/
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
html {
scroll-behavior: smooth;
background: #494f5c;
color: #e8eef2;
font-family: trebuchet ms,Verdana,verdana ref,segoe ui,Candara,lucida grande,lucida sans unicode,lucida sans,Tahoma,sans-serif;
}
h1 {
font-size: 2.5em;
}
.center {
width: 100%;
text-align: center;
}
.flex {
justify-content: center;
display: flex;
flex-wrap: wrap;
flex-flow: row wrap;
}
a {
outline: 0;
}
.podcatcher {
background: #3e424d;
border-radius: 5px;
margin: 10px;
cursor: pointer;
text-decoration: none;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
transition: 0.3s;
}
.podcatcher:hover {
transform: scale(1.07);
filter: drop-shadow(0 0 10px rgb(68, 70, 71));
}
.podcatcher > img {
width: 30px;
}