-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
63 lines (63 loc) · 1.32 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.main-container{
width: 300px;
/* height: 200px; */
font-family: 'Poppins', sans-serif;
text-align: center;
}
.main-container .top{
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
border-bottom: 1px solid #a2a2a2;
font-family: 'Dancing Script', cursive;
}
.main-container .top .logo{
display: flex;
justify-content: space-between;
align-items: center;
}
.main-container .text span{
font-size: 1.1rem;
font-weight: bold;
color: #313131;
letter-spacing: 2px;
font-weight: bolder;
text-shadow: 2px 2px 10px #929292;
}
.main-container .bottom{
padding: 1rem 1.5rem;
}
button{
padding: 0.5rem 1rem;
border: none;
outline: none;
background-color: #05aa6c;
color: #ffffff;
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
width: 150px;
letter-spacing: 1px;
border-radius: 5px;
}
.main-container .bottom .display{
margin-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.main-container .bottom .display .color{
width: 50px;
height: 35px;
}
.main-container .bottom .display .colorVal{
font-size: 1.2rem;
}
.main-container .bottom .display.hide{
display: none;
}