Skip to content

Commit 4e80101

Browse files
committed
deploy: 00bcc52
0 parents  commit 4e80101

File tree

536 files changed

+108943
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

536 files changed

+108943
-0
lines changed

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


404.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Single Page Apps for GitHub Pages</title>
6+
<script type="text/javascript">
7+
// Single Page Apps for GitHub Pages
8+
// https://github.com/rafrex/spa-github-pages
9+
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
10+
// ----------------------------------------------------------------------
11+
// This script takes the current url and converts the path and query
12+
// string into just a query string, and then redirects the browser
13+
// to the new url with only a query string and hash fragment,
14+
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes
15+
// http://www.foo.tld/?p=/one/two&q=a=b~and~c=d#qwe
16+
// Note: this 404.html file must be at least 512 bytes for it to work
17+
// with Internet Explorer (it is currently > 512 bytes)
18+
// If you're creating a Project Pages site and NOT using a custom domain,
19+
// then set segmentCount to 1 (enterprise users may need to set it to > 1).
20+
// This way the code will only replace the route part of the path, and not
21+
// the real directory in which the app resides, for example:
22+
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
23+
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe
24+
// Otherwise, leave segmentCount as 0.
25+
var segmentCount = 0;
26+
var l = window.location;
27+
l.replace(
28+
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
29+
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/?p=/' +
30+
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') +
31+
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') +
32+
l.hash
33+
);
34+
</script>
35+
</head>
36+
<body>
37+
</body>
38+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
linq2graphql.com

Linq2GraphQL.Docs.styles.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
@import '_content/TabBlazor/TabBlazor.bundle.scp.css';
2+
3+
/* /Shared/MainLayout.razor.rz.scp.css */
4+
.page[b-ii4avmppus] {
5+
position: relative;
6+
display: flex;
7+
flex-direction: column;
8+
}
9+
10+
main[b-ii4avmppus] {
11+
flex: 1;
12+
}
13+
14+
.sidebar[b-ii4avmppus] {
15+
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
16+
}
17+
18+
.top-row[b-ii4avmppus] {
19+
background-color: #f7f7f7;
20+
border-bottom: 1px solid #d6d5d5;
21+
justify-content: flex-end;
22+
height: 3.5rem;
23+
display: flex;
24+
align-items: center;
25+
}
26+
27+
.top-row[b-ii4avmppus] a, .top-row[b-ii4avmppus] .btn-link {
28+
white-space: nowrap;
29+
margin-left: 1.5rem;
30+
text-decoration: none;
31+
}
32+
33+
.top-row[b-ii4avmppus] a:hover, .top-row[b-ii4avmppus] .btn-link:hover {
34+
text-decoration: underline;
35+
}
36+
37+
.top-row[b-ii4avmppus] a:first-child {
38+
overflow: hidden;
39+
text-overflow: ellipsis;
40+
}
41+
42+
@media (max-width: 640.98px) {
43+
.top-row:not(.auth)[b-ii4avmppus] {
44+
display: none;
45+
}
46+
47+
.top-row.auth[b-ii4avmppus] {
48+
justify-content: space-between;
49+
}
50+
51+
.top-row[b-ii4avmppus] a, .top-row[b-ii4avmppus] .btn-link {
52+
margin-left: 0;
53+
}
54+
}
55+
56+
@media (min-width: 641px) {
57+
.page[b-ii4avmppus] {
58+
flex-direction: row;
59+
}
60+
61+
.sidebar[b-ii4avmppus] {
62+
width: 250px;
63+
height: 100vh;
64+
position: sticky;
65+
top: 0;
66+
}
67+
68+
.top-row[b-ii4avmppus] {
69+
position: sticky;
70+
top: 0;
71+
z-index: 1;
72+
}
73+
74+
.top-row.auth[b-ii4avmppus] a:first-child {
75+
flex: 1;
76+
text-align: right;
77+
width: 0;
78+
}
79+
80+
.top-row[b-ii4avmppus], article[b-ii4avmppus] {
81+
padding-left: 2rem !important;
82+
padding-right: 1.5rem !important;
83+
}
84+
}

0 commit comments

Comments
 (0)