forked from bitrise-io/devcenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
127 lines (115 loc) · 3.55 KB
/
404.html
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
117
118
119
120
121
122
123
124
125
126
127
---
layout: default
sitemap:
exclude: 'yes'
---
<style type="text/css" media="screen">
.container {
position: relative;
margin: 10px auto;
text-align: center;
}
h1 {
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
.notfound-box {
max-width: 90%;
padding-left: 2rem;
padding-right: 2rem;
padding-top: 2rem;
padding-bottom: 2rem;
border-radius: 8px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
border-top: solid 1px #ececec;
border-bottom: solid 1px #ececec;
border-left: solid 4px #683d87;
border-right: solid 4px #683d87;
text-align: center;
color: #444444;
font-weight: bold;
font-size: 1.6rem;
margin: auto;
.notfound-box, a {
display: block;
&:hover, &:focus {
color: #760fc3;
}
}
.notfound-box, a {
display: block;
}
}
.notfound-banner {
display: block;
max-width: 60%;
margin-left: auto;
margin-right: auto;
height: auto;
position: relative;
img {
width: 100%;
border: none;
}
}
.notfound-button {
position: absolute;
top: 25%; left: 25%;
background-image: linear-gradient(to bottom, #6c0eb2, #450674 97%);
border-radius: 4px;
border: none;
width: 50%;
height: 50%;
color: #f8f8f8;
cursor: pointer;
line-height: 1.4;
font-size: 100%;
font-family: TTNorms;
font-weight: bold;
}
</style>
<div class="container">
<div class="notfound-box">
<h1>404 - Page Not Found</h1>
<p>Sorry, we couldn't find the page you were looking for. Go back to the home page, or check out some of our most popular content!</p>
<div class="notfound-banner">
<img src="/assets/images/banner-bg-888x170.png">
<a href="/"><button class="notfound-button">Take me home!</button></a>
</div>
</div>
<div class="index-container">
<a class="index-box" href="/getting-started/index/">
<img style="border:none;" src="/assets/logos/icons-docs/getting-started-index.svg" />
<label class="index-title">Getting started</label>
<p>Sign up to Bitrise, add a new app, and start a build! </p>
</a>
<a class="index-box" href="/code-signing/ios-code-signing/code-signing/">
<img style="border:none;" src="/assets/logos/icons-docs/code-signing-index.svg" />
<label class="index-title">iOS code signing</label>
<p>Upload your code signing files, and export your app.</p>
</a>
<a class="index-box" href="/deploy/deployment-index/">
<img style="border:none;" src="/assets/logos/icons-docs/ship-index.svg" />
<label class="index-title">Deployment</label>
<p>Check out Bitrise's fast and efficient deployment solutions!</p>
</a>
</div>
<div class="index-container">
<a class="index-box" href="/builds/triggering-builds-index/">
<img style="border:none;" src="/assets/logos/icons-docs/trigger-index.svg" />
<label class="index-title">Triggering builds</label>
<p>Learn about how to trigger builds on Bitrise.</p>
</a>
<a class="index-box" href="/steps-and-workflows/steps-and-workflows-index/">
<img style="border:none;" src="/assets/logos/icons-docs/workflow-index.svg" />
<label class="index-title">Steps and Workflows</label>
<p>Steps and Workflows are the heart of how Bitrise works.</p>
</a>
<a class="index-box" href="/testing/testing-index/">
<img style="border:none;" src="/assets/logos/icons-docs/testing-index.svg" />
<label class="index-title">Testing</label>
<p>Run and analyze tests with our Steps and the Test Report add-on.</p>
</a>
</div>
</div>