PluginProbe
Patchstack – WordPress & Plugins Security / 2.2.8
Patchstack – WordPress & Plugins Security v2.2.8
2.3.7 trunk 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.1.19 2.1.2 2.1.20 2.1.21 2.1.22 2.1.23 2.1.24 2.1.25 2.1.3 2.1.4 2.1.5 2.1.6 All 49 releases
patchstack / assets / css / public.css

public.css in Patchstack – WordPress & Plugins Security 2.2.8, at assets/css/public.css

145 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #patchstack-cookie-notice {
2 display: block;
3 visibility: hidden;
4 position: fixed;
5 min-width: 100%;
6 height: auto;
7 z-index: 100000;
8 font-size: 14px;
9 font-family: sans-serif;
10 font-weight: 300;
11 line-height: 20px;
12 left: 0;
13 bottom: 0;
14 text-align: left;
15 }
16
17 .patchstack-cookie-notice-container {
18 width: 100%;
19 display: -ms-flexbox;
20 display: flex;
21 -ms-flex-wrap: wrap;
22 flex-wrap: wrap;
23 padding: 15px;
24 margin-right: auto;
25 margin-left: auto;
26 }
27
28 .patchstack-cn-notice-text-container{
29 -ms-flex: 0 0 75%;
30 flex: 0 0 75%;
31 max-width: 75%;
32 display: flex;
33 align-items: center;
34 justify-content: center;
35 }
36
37 .patchstack-cn-notice-button-container{
38 -ms-flex: 0 0 25%;
39 flex: 0 0 25%;
40 max-width: 25%;
41 display: flex;
42 align-items: center;
43 justify-content: center;
44 padding-top: 5px;
45 }
46
47 .patchstack-cn-notice-link:hover{
48 opacity: 1;
49 -webkit-transition: opacity 0.2s;
50 transition: opacity 0.2s;
51 }
52
53 .patchstack-cn-notice-link:hover{
54 opacity: 0.8;
55 }
56
57 .patchstack-cn-protected-by{
58 position: absolute;
59 font-size: 12px;
60 bottom: 10px;
61 text-decoration: none!important;
62 }
63
64 button#patchstack-cn-accept-cookie{
65 color: #333;
66 font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
67 font-size: 15px;
68 font-size: 0.9375rem;
69 font-weight: 400;
70 line-height: 1.66;
71 -webkit-box-shadow: none;
72 box-shadow: none;
73 background-color: transparent;
74 color: #fff;
75 opacity: 1;
76 cursor: pointer;
77 display: inline-block;
78 font-size: 14px;
79 font-size: 0.875rem;
80 font-weight: 800;
81 line-height: 1;
82 padding: 0.5em 2em;
83 border: 1px solid #222;
84 text-shadow: none;
85 -webkit-transition: opacity 0.2s;
86 transition: opacity 0.2s;
87 }
88
89 button#patchstack-cn-accept-cookie:hover{
90 opacity: 0.8;
91 }
92
93 @media (min-width: 576px) {
94 .patchstack-cookie-notice-container {
95 max-width: 540px;
96 }
97 }
98
99 @media (min-width: 768px) {
100 .patchstack-cookie-notice-container {
101 max-width: 720px;
102 }
103 }
104
105 @media (min-width: 992px) {
106 .patchstack-cookie-notice-container {
107 max-width: 960px;
108 }
109 }
110
111 @media (min-width: 1200px) {
112 .patchstack-cookie-notice-container {
113 max-width: 1140px;
114 }
115 }
116
117 @media (max-width: 991.98px) {
118
119 .patchstack-cn-notice-text-container{
120 -ms-flex: 0 0 100%;
121 flex: 0 0 100%;
122 max-width: 100%;
123 }
124
125 .patchstack-cn-notice-button-container{
126 -ms-flex: 0 0 100%;
127 flex: 0 0 100%;
128 max-width: 100%;
129 display: flex;
130 align-items: left;
131 justify-content: left;
132 }
133
134 button#patchstack-cn-accept-cookie{
135 margin-top: 10px;
136 }
137
138 .patchstack-cn-protected-by{
139 position: relative;
140 bottom: 7px;
141 left: 10px;
142 }
143
144 }
145