-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
100 lines (83 loc) · 1.38 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
89
90
91
92
93
94
95
96
97
98
99
100
body {
width: 680px;
background-color: #106c8b;
}
#linkDiv {
text-align: right;
}
a {
color: #00ffff;
}
.content {
background-color: #030e59;
border-radius: 0.5em;
}
.innerContent {
margin-bottom: 1em;
}
.header img {
vertical-align: middle;
text-align: center;
width: 28px;
height: 28px;
float: left;
margin-left: 6px;
}
.header h1 {
position: relative;
text-align: center;
color: #ffffff;
}
.content h3 {
text-align: left;
color: #888888;
padding: 6px 0 0 6px;
margin: 0px;
}
.content input {
font-size: 1.25em;
}
.content button {
height: 30px;
width: 320px;
outline: none;
background-color: #00ffff;
border-radius: 1em;
font-size: 1.25em;
margin: 1em;
}
.content button:active {
transform: scale(0.98);
box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
.content p {
font-size: 1.5em;
color: #ffffff;
}
#contentWrapper {
height: 560px;
text-align: center;
float: right;
}
#logDiv {
height: 530px;
width: 320px;
}
#logDiv textarea {
height: 482px;
width: 314px;
}
textarea {
overflow: auto;
background-color: inherit;
color: #dddddd;
border: none;
outline: none;
resize: none;
}
textarea::-webkit-scrollbar {
background-color: #dddddd;
}
textarea::-webkit-scrollbar-thumb {
background-color: #00ffff;
}