-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
66 lines (65 loc) · 1.06 KB
/
popup.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
button {
background-color: #664de5;
border: none;
padding: 10px 20px;
border-radius: 5px;
margin: 20px 10px;
cursor: pointer;
color: white;
}
.wrapper {
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
width: 400px;
height: 400px;
}
.logo {
margin: 20px;
display: flex;
justify-content: center;
width: auto;
align-items: center;
}
.logo img {
align-items: center;
height: 24px;
width: 24px;
}
.logo h1,
h2,
h3,
h4 {
font-family: poppins;
font-weight: 800;
padding-left: 18px;
}
.feeds{
padding: 10px;
}
.hero-section {
width: auto;
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.hero-image {
height: 150px;
width: 300px;
}
footer {
color: #130406;
display: flex;
align-items: center;
justify-content: center;
}
.danger{
background-color: red;
}