-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.css
88 lines (86 loc) · 1.37 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
86
87
88
#form .error
{
border: 2px solid grey;
}
#form .msg-window-chat-in,
#form .msg-window-chat-out
{
margin-top: 3px;
margin-bottom: 3px;
border-radius: 5px;
}
#form .msg-window-chat-in
{
margin-right: 30px;
padding-left: 5px;
text-align: left;
background-color: beige;
}
#form .msg-window-chat-out
{
margin-left: 30px;
padding-right: 5px;
text-align: right;
background-color: aliceblue;
}
#msg-window td
{
max-height: 100px;
overflow-y: auto;
}
.msg-window-user
{
cursor: pointer;
}
#memo-private-key
{
border: 2px solid silver;
width: 600px;
height: 25px;
border-radius: 8px;
background-color: beige;
}
#active-private-key
{
border: 2px solid silver;
width: 600px;
height: 25px;
border-radius: 8px;
background-color: beige;
}
#msg
{
border: 2px solid silver;
width: 600px;
height: 100px;
border-radius: 8px;
background-color: beige;
}
#msg-to
{
border: 2px solid silver;
width: 600px;
height: 27px;
border-radius: 8px;
background-color: beige;
}
#msg-from
{
border: 2px solid silver;
width: 200px;
height: 25px;
border-radius: 8px;
background-color: beige;
}
body
{
margin-left: 500px;
margin-right: 100px;
margin-top: 110px;
margin-bottom: 300px;
}
body
{
background-image: url(https://cdn.pixabay.com/photo/2018/03/31/05/06/blockchain-3277335_960_720.png);
background-size: 100%;
}