-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.css
More file actions
109 lines (98 loc) · 1.59 KB
/
error.css
File metadata and controls
109 lines (98 loc) · 1.59 KB
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
@charset "UTF-8";
body {
margin: 0;
padding: 0;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #000;
font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
font-size: 1.5em;
text-align: center;
color: #fff;
fill: currentColor;
}
.matoran-text {
width: 3em;
max-width: 90%;
}
.bg-img {
position: absolute;
top: 0;
bottom: 10%;
left: 0;
right: 0;
background-size: cover;
background-position: bottom center;
}
#error-code {
position: absolute;
top: 10%;
left: 0;
right: 0;
font-size: 2em;
}
#bottom-text {
position: absolute;
bottom: 0;
left: 0;
right: 0;
/*background: #000;*/
background: rgba(0, 0, 0, 0.8);
color: #fff;
}
#speech {
padding: 1em;
}
#button-container {
display: flex;
flex-direction: row;
}
.button {
display: inline-block;
background: #050f19;
border-top: 1px solid #1d303e;
border-left: 1px solid #1d303e;
margin-top: -1px;
margin-left: -1px;
width: 50%;
padding: 0.5em 0;
vertical-align: middle;
text-decoration: none;
color: #fff;
box-sizing: border-box;
}
.button:hover {
background: #1d303e;
color: #fff;
}
@media (max-width: 700px), (orientation: portrait) {
body {
font-size: 2em;
}
.button {
color: #fff;
border-color: #fff;
display: table-row;
padding: 2em 0;
}
#button-container {
flex-direction: column;
}
.button {
width: 100%;
padding: 1em;
}
}
@media (max-height: 500px) {
#speech {
padding: .25em;
}
}
@media (max-height: 500px), (orientation: landscape) {
.button {
padding: .5em;
}
}