.gitignore added
[dotfiles/.git] / .config / google-chrome / Default / Extensions / nmmhkkegccagdldgiimedpiccmgmieda / 1.0.0.6_0 / css / craw_window.css
1 html, body {
2   margin: 0;
3   overflow: hidden;
4 }
5
6 webview {
7   width: 100%;
8   height: 100%;
9   min-height: 100%;
10   position: absolute;
11 }
12
13 .craw_overlay {
14   position: absolute;
15
16   left: 0;
17   top: 0;
18   right: 0;
19   bottom: 0;
20
21   background-color: white;
22
23   -webkit-transition: opacity 250ms linear;
24
25   display: -webkit-flex;
26   -webkit-flex-direction: column;
27   -webkit-flex: 1 0%;
28   -webkit-align-items: center;
29   -webkit-justify-content: center;
30
31   -webkit-app-region: drag;
32 }
33
34 .craw_overlay img {
35   margin: 16px;
36 }
37
38 #loading_overlay {
39   opacity: 1;
40 }
41
42 #offline_overlay {
43   opacity: 0;
44   display: none;
45 }
46
47 #offline_overlay > img {
48   -webkit-filter: saturate(0%);
49 }
50
51 #offline_overlay > span {
52   font-family: 'Open Sans', 'Deja Vu Sans', Arial, sans-serif;
53   font-size: 15px;
54   line-height: 21px;
55   color: #8d8d8d;
56   display: block;
57 }
58
59 #loading_splash {
60   width: 128px;
61   height: 128px;
62 }
63
64 #drag_overlay {
65   position: absolute;
66   left: 0;
67   top: 0;
68   right: 0;
69   bottom: 0;
70   pointer-events: none;
71   -webkit-app-region: drag;
72   display: none;
73 }
74
75 #top_bar {
76   -webkit-app-region: no-drag;
77   top: 4px;
78   right: 4px;
79   height: 28px;
80   width: 160px;
81   position: absolute;
82   pointer-events: all;
83
84   -webkit-transition: opacity 250ms linear;
85   opacity: 1;
86
87   display: none;
88 }
89
90 #top_bar div {
91   position: absolute;
92   width: 24px;
93   height: 24px;
94   top: 0;
95   background: url('/images/topbar_floating_button.png');
96 }
97
98 #top_bar div:hover {
99   background: url('/images/topbar_floating_button_hover.png');
100 }
101
102 #top_bar div:active {
103   background: url('/images/topbar_floating_button_pressed.png');
104 }
105
106 #top_bar div > img {
107   width: 100%;
108   height: 100%;
109   top: 0;
110   left: 0;
111   position: absolute;
112 }
113
114 #close_button { right: 4px; }
115 #maximize_button { right: 32px; }