-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (102 loc) · 2.46 KB
/
styles.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
114
115
116
/* block inserted to page*/
#yt-txt-popup {
/* max-height: 50vh; */
position: fixed;
min-width: 270px;
width: 30vw;
right: 10px;
top: 10px;
background-color: #CCCCCC;
opacity: 0.3;
z-index: 9998;
border-radius: 3px;
border: 1px solid #D1D1D1;
padding: 30px 5px 5px 5px;
transition: 0.5s ease;
display: none;
font-size: 14px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#yt-txt-popup.collapse {
height: 18px;
padding: 10px 5px;
overflow-y: none;
}
#yt-txt-button-wrapper {
position: absolute;
right: 0px;
top: 10px;
padding: 0 5px;
height: 20px;
}
.yt-txt-buttons {
padding: 7px 10px;
margin-left: 5px;
border-radius: 3px;
background: #02B3E4;
color: #FFF !important;
text-decoration: none;
}
.yt-txt-buttons:hover {
background: rgb(2, 103, 131);
color: #FFF !important;
}
#txt {
padding: 5px;
border-radius: 5px;
margin-top: 10px;
color: black;
overflow-y: auto;
max-height: 50vh;
background-color: rgb(235, 235, 235);
}
#txt::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
border-radius: 5px;
}
#txt::-webkit-scrollbar {
width: 5px;
background-color: #F5F5F5;
}
#txt::-webkit-scrollbar-thumb {
background-color: #6b6b6b;
border: 2px solid #636363;
}
/* popup html near icon */
#credentials {
font-size: 10px;
padding-bottom: 15px;
}
#checkPage {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 24px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
#checkPage:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
#checkPage:active {
background: #164864;
}
/* for gTranslate bubble that it will appear below all other blocks */
.jfk-bubble {
z-index: 9999 !important;
}