-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
128 lines (109 loc) · 1.88 KB
/
popup.css
File metadata and controls
128 lines (109 loc) · 1.88 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul{
list-style-type: none;
}
html{
background-color: #fff;
color: #403d3d;
font-family: 'Noto Sans', sans-serif;
font-weight: 400;
font-size: 12px;
text-rendering: optimizeLegibility;
margin-top:0;
margin-bottom: 0;
}
body {
padding-top: 10px;
text-align: center;
background-color: #f0f0f0;
}
p{
margin-bottom:0
}
span {
color:#272323a6;
background-color: #f0f0f0;
}
.container {
width: auto;
height: auto;
padding: 4px 10px;
text-align: center;
}
.notes-container {
text-align: center;
}
li {
text-align: left;
}
.flag-progress-bar {
background-color: aqua;
height: 10px;
width:5px;
}
.results {
align-items: center;
width:auto;
height: auto;
margin: 15px 5px;
}
.polygraph-false-claim{
display:inline-block;
margin: 2px 12px;
width: 450px;
height: 180px;
border-radius: 7px;
background-color:#dc3545;
box-shadow: 1px 1px 3px rgba(33, 33, 33, 0.7);
}
.polygraph-false-claim-inner{
background-color: #fff;
width: auto;
margin: 3px;
height: 154px;
bottom: 2px;
border-radius: 10px;
box-shadow: inset 0 0 2px black;
padding: 6px 10px;
}
.polygraph-false-claim-header{
color: #fff;
font-size: 12px;
line-height: 20px;
text-align: center;
margin: auto;
}
.button {
display:inline-block;
width:auto;
padding: 8px 80px;
color:#f0f0f0;
-webkit-transition: background-color 0.2s, border 0.2s, color 0.3s;
transition: background-color 0.2s, border 0.2s, color 0.3s;
}
#analyze{
padding: 8px 80px;
box-shadow: 0 2px 4px #403d3d;
}
.button-red {
background-color: #b81616;
border:1px solid #b81616
}
.button-red:hover{
border: 4px solid #dd0000 ;
background-color: #dd0000 ;
color: #f0f0f0;
}
.button-grey{
background-color: rgb(145, 145, 145);
}
.timestamps {
display:block;
}
#polygraph-title{
margin: 10px 0px 15px 0px;
}