-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
72 lines (65 loc) · 1.44 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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", sans-serif;
width: 350px;
height: 400px;
text-align: center;
box-shadow: rgba(204, 204, 210, 0.2) 0px 7px 29px 0px;
background-color: #ffffff;
background-image: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);
}
h1 {
font-size: 20px;
background-image: radial-gradient(
circle 759px at -6.7% 50%,
rgba(80, 131, 73, 1) 0%,
rgba(140, 209, 131, 1) 26.2%,
rgba(178, 231, 170, 1) 50.6%,
rgba(144, 213, 135, 1) 74.1%,
rgba(75, 118, 69, 1) 100.3%
);
color: white;
padding: 20px;
}
label {
display: inline-block;
margin-top: 10px;
font-weight: 600;
}
input[type="number"] {
width: 50px;
margin-left: 5px;
}
img {
border-radius: 50%;
height: 40px;
}
button {
background-image: radial-gradient(
circle 759px at -6.7% 50%,
rgba(80, 131, 73, 1) 0%,
rgba(140, 209, 131, 1) 26.2%,
rgba(178, 231, 170, 1) 50.6%,
rgba(144, 213, 135, 1) 74.1%,
rgba(75, 118, 69, 1) 100.3%
);
color: white;
padding: 5px 20px;
margin: 0 5px;
border: none;
cursor: pointer;
font-size: 15px;
margin-top: 10px;
border-radius: 5px;
}
#lorem-ipsum-text {
margin-top: 20px;
text-align: left;
height: 180px;
overflow: auto;
border: 1px solid #e1e1e1;
padding: 0 15px;
}
.copyright {
margin-bottom: 10px;
}