-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
42 lines (42 loc) · 793 Bytes
/
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
*{
margin: 0;
padding: 0;
}
body{
width: 220px;
height: 250px;
overflow: hidden;
background-image: linear-gradient(150deg, #e3dbd9 0%, #9b8393 50%, #bec3a4 75%);
font-family: math;
}
.container{
width: 100%;
height: 100%;
text-align: center;
justify-content: center;
justify-items: center;
align-items: center;
}
.container h1{
text-align: center;
justify-content: center;
font-size: 1.3rem;
color: #000;
margin: 10px 0;
}
.container p{
text-align: center;
font-size: 1.3rem;
}
.container button {
padding: 5px 10px;
color: #e3dbd9;
background-color: #9b8393;
border-radius: 10px;
border: none;
cursor: pointer;
margin: 2px;
}
.container button:hover {
background-color: #616451;
}