-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
85 lines (74 loc) · 1.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
margin: 0;
padding: 0;
background-color: black;
font-family: Arial, Helvetica, sans-serif;
}
#quote-container {
text-align: center;
padding: 20px;
width: 400px;
margin: 0 auto;
}
#anime-image {
max-width: 100%;
height: 200px;
margin-bottom: 10px;
}
#quote {
font-size: 18px;
font-style: italic;
margin-bottom: 5px;
color: whitesmoke;
}
#anime-name {
font-size: 14px;
font-weight: bold;
color: grey;
}
#new-quote-btn{
align-items: center;
background-color: #fff;
border-radius: 12px;
box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
box-sizing: border-box;
color: maroon;
cursor: pointer;
display: inline-flex;
flex: 1 1 auto;
font-family: Inter,sans-serif;
font-size: 1rem;
font-weight: 600;
justify-content: center;
line-height: 1;
margin: 0;
outline: none;
padding: 0.5rem 1rem;
text-align: center;
text-decoration: none;
transition: box-shadow .2s,-webkit-box-shadow .2s;
white-space: nowrap;
border: 0;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
#new-quote-btn:hover {
box-shadow: #6a1414 0 0 0 3px, transparent 0 0 0 0;
}
.footer {
margin-top: 20px;
text-align: center;
padding: 20px;
background-color: #ffedf0;
border-radius: 10px;
}
.footer a{
text-decoration: none;
font-weight: 600;
color: maroon;
}
.footer svg{
width: 13px;
padding: 0 2px;
}