-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
113 lines (98 loc) · 2.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
@charset "UTF-8";
@font-face {
font-family: dana;
font-style: normal;
font-weight: 400;
src: url(assets/fonts/dana-fanum-regular.eot);
src: url(assets/fonts/dana-fanum-regular.eot?#iefix) format("embedded-opentype"),
url(assets/fonts/dana-fanum-regular.woff2) format("woff2"),
url(assets/fonts/dana-fanum-regular.woff) format("woff");
}
.popup-container {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
width: 245px;
margin: 10px;
border-radius: 10px;
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px
}
.popup-container .difficulty-container {
display: none;
height: 100%;
flex-direction: column;
align-items: flex-end
}
.popup-container .difficulty-container .difficulty-text {
border-radius: .25rem;
padding: 5px 8px;
color: #fff;
margin-bottom: 0;
margin-left: .5rem
}
.popup-container .difficulty-container .difficulty-box {
display: flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
margin-bottom: 1rem
}
.popup-container .difficulty-container .remove-button {
display: none;
padding: 5px 8px;
font-size: 14px
}
.popup-container .difficulty-container .difficulty-info {
font-size: x-small;
direction: rtl;
text-align: right;
margin-bottom: 32px
}
.popup-container .difficulty-container .correction-link {
font-size: 12px;
position: absolute;
bottom: 16px;
left: 20px;
text-decoration: none
}
.popup-container .not-supported-container {
display: none;
text-align: right;
font-size: small
}
.popup-container .not-supported-container .not-supported-text {
direction: rtl
}
.popup-container .not-supported-container .not-supported-link {
font-size: 12px;
text-decoration: none
}
.popup-container .spinner-container {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
width: 100%
}
.popup-container .spinner-container .fa-circle-notch {
font-size: 25px
}
.plugin-title {
font-size: 13px;
padding: 15px 15px 0;
direction: rtl
}
.close-button {
color: red;
cursor: pointer;
background: none;
border: none;
font-size: 13px;
font-family: dana;
direction: rtl;
position: absolute;
top: 15px;
left: 10px
}