Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/dinosaur/index.css
1324 views
1
/* Copyright 2013 The Chromium Authors. All rights reserved.
2
* Use of this source code is governed by a BSD-style license that can be
3
* found in the LICENSE file. */
4
5
html, body {
6
padding: 0;
7
margin: 0;
8
width: 100%;
9
height: 100%;
10
background-color: #EEE;
11
}
12
13
.icon {
14
-webkit-user-select: none;
15
user-select: none;
16
display: inline-block;
17
}
18
19
.icon-offline {
20
content: -webkit-image-set( url(assets/default_100_percent/100-error-offline.png) 1x, url(assets/default_200_percent/200-error-offline.png) 2x);
21
position: relative;
22
}
23
24
.hidden {
25
display: none;
26
}
27
28
29
/* Offline page */
30
31
.offline .interstitial-wrapper {
32
color: #2b2b2b;
33
font-size: 1em;
34
line-height: 1.55;
35
margin: 0 auto;
36
max-width: 600px;
37
padding-top: 100px;
38
width: 100%;
39
}
40
41
.offline .runner-container {
42
height: 150px;
43
max-width: 600px;
44
overflow: hidden;
45
position: absolute;
46
top: 35px;
47
width: 44px;
48
}
49
50
.offline .runner-canvas {
51
height: 150px;
52
max-width: 600px;
53
opacity: 1;
54
overflow: hidden;
55
position: absolute;
56
top: 0;
57
z-index: 2;
58
}
59
60
.offline .controller {
61
background: rgba(247, 247, 247, .1);
62
height: 100vh;
63
left: 0;
64
position: absolute;
65
top: 0;
66
width: 100vw;
67
z-index: 1;
68
}
69
70
#offline-resources {
71
display: none;
72
}
73
74
@media (max-width: 420px) {
75
.suggested-left > #control-buttons, .suggested-right > #control-buttons {
76
float: none;
77
}
78
.snackbar {
79
left: 0;
80
bottom: 0;
81
width: 100%;
82
border-radius: 0;
83
}
84
}
85
86
@media (max-height: 350px) {
87
h1 {
88
margin: 0 0 15px;
89
}
90
.icon-offline {
91
margin: 0 0 10px;
92
}
93
.interstitial-wrapper {
94
margin-top: 5%;
95
}
96
.nav-wrapper {
97
margin-top: 30px;
98
}
99
}
100
101
@media (min-width: 600px) and (max-width: 736px) and (orientation: landscape) {
102
.offline .interstitial-wrapper {
103
margin-left: 0;
104
margin-right: 0;
105
}
106
}
107
108
@media (min-width: 420px) and (max-width: 736px) and (min-height: 240px) and (max-height: 420px) and (orientation:landscape) {
109
.interstitial-wrapper {
110
margin-bottom: 100px;
111
}
112
}
113
114
@media (min-height: 240px) and (orientation: landscape) {
115
.offline .interstitial-wrapper {
116
margin-bottom: 90px;
117
}
118
.icon-offline {
119
margin-bottom: 20px;
120
}
121
}
122
123
@media (max-height: 320px) and (orientation: landscape) {
124
.icon-offline {
125
margin-bottom: 0;
126
}
127
.offline .runner-container {
128
top: 10px;
129
}
130
}
131
132
@media (max-width: 240px) {
133
.interstitial-wrapper {
134
overflow: inherit;
135
padding: 0 8px;
136
}
137
}
138