Skip to content

Commit baa879b

Browse files
committedJul 16, 2018
docs: add static files required by universal homepage.
1 parent e7717d7 commit baa879b

18 files changed

+6532
-0
lines changed
 

‎doc/_static/doit-logo-small.png

5.24 KB
Loading

‎doc/_static/doit-logo.png

8.7 KB
Loading

‎doc/_static/universal/custom.css

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/* your styles go here */
2+
.pycode .hll { background-color: #ffffcc }
3+
.pycode { background: #f0f0f0; }
4+
.pycode .c { color: #60a0b0; font-style: italic } /* Comment */
5+
.pycode .err { border: 1px solid #FF0000 } /* Error */
6+
.pycode .k { color: #007020; font-weight: bold } /* Keyword */
7+
.pycode .o { color: #666666 } /* Operator */
8+
.pycode .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */
9+
.pycode .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
10+
.pycode .cp { color: #007020 } /* Comment.Preproc */
11+
.pycode .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */
12+
.pycode .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
13+
.pycode .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
14+
.pycode .gd { color: #A00000 } /* Generic.Deleted */
15+
.pycode .ge { font-style: italic } /* Generic.Emph */
16+
.pycode .gr { color: #FF0000 } /* Generic.Error */
17+
.pycode .gh { color: #000080; font-weight: bold } /* Generic.Heading */
18+
.pycode .gi { color: #00A000 } /* Generic.Inserted */
19+
.pycode .go { color: #888888 } /* Generic.Output */
20+
.pycode .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
21+
.pycode .gs { font-weight: bold } /* Generic.Strong */
22+
.pycode .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
23+
.pycode .gt { color: #0044DD } /* Generic.Traceback */
24+
.pycode .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
25+
.pycode .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
26+
.pycode .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
27+
.pycode .kp { color: #007020 } /* Keyword.Pseudo */
28+
.pycode .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
29+
.pycode .kt { color: #902000 } /* Keyword.Type */
30+
.pycode .m { color: #40a070 } /* Literal.Number */
31+
.pycode .s { color: #4070a0 } /* Literal.String */
32+
.pycode .na { color: #4070a0 } /* Name.Attribute */
33+
.pycode .nb { color: #007020 } /* Name.Builtin */
34+
.pycode .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
35+
.pycode .no { color: #60add5 } /* Name.Constant */
36+
.pycode .nd { color: #555555; font-weight: bold } /* Name.Decorator */
37+
.pycode .ni { color: #d55537; font-weight: bold } /* Name.Entity */
38+
.pycode .ne { color: #007020 } /* Name.Exception */
39+
.pycode .nf { color: #06287e } /* Name.Function */
40+
.pycode .nl { color: #002070; font-weight: bold } /* Name.Label */
41+
.pycode .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
42+
.pycode .nt { color: #062873; font-weight: bold } /* Name.Tag */
43+
.pycode .nv { color: #bb60d5 } /* Name.Variable */
44+
.pycode .ow { color: #007020; font-weight: bold } /* Operator.Word */
45+
.pycode .w { color: #bbbbbb } /* Text.Whitespace */
46+
.pycode .mb { color: #40a070 } /* Literal.Number.Bin */
47+
.pycode .mf { color: #40a070 } /* Literal.Number.Float */
48+
.pycode .mh { color: #40a070 } /* Literal.Number.Hex */
49+
.pycode .mi { color: #40a070 } /* Literal.Number.Integer */
50+
.pycode .mo { color: #40a070 } /* Literal.Number.Oct */
51+
.pycode .sa { color: #4070a0 } /* Literal.String.Affix */
52+
.pycode .sb { color: #4070a0 } /* Literal.String.Backtick */
53+
.pycode .sc { color: #4070a0 } /* Literal.String.Char */
54+
.pycode .dl { color: #4070a0 } /* Literal.String.Delimiter */
55+
.pycode .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
56+
.pycode .s2 { color: #4070a0 } /* Literal.String.Double */
57+
.pycode .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
58+
.pycode .sh { color: #4070a0 } /* Literal.String.Heredoc */
59+
.pycode .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
60+
.pycode .sx { color: #c65d09 } /* Literal.String.Other */
61+
.pycode .sr { color: #235388 } /* Literal.String.Regex */
62+
.pycode .s1 { color: #4070a0 } /* Literal.String.Single */
63+
.pycode .ss { color: #517918 } /* Literal.String.Symbol */
64+
.pycode .bp { color: #007020 } /* Name.Builtin.Pseudo */
65+
.pycode .fm { color: #06287e } /* Name.Function.Magic */
66+
.pycode .vc { color: #bb60d5 } /* Name.Variable.Class */
67+
.pycode .vg { color: #bb60d5 } /* Name.Variable.Global */
68+
.pycode .vi { color: #bb60d5 } /* Name.Variable.Instance */
69+
.pycode .vm { color: #bb60d5 } /* Name.Variable.Magic */
70+
.pycode .il { color: #40a070 } /* Literal.Number.Integer.Long */

‎doc/_static/universal/style.default.css

+3,581
Large diffs are not rendered by default.

‎doc/_static/universal/texture-bw.png

79.7 KB
Loading

‎doc/_static/vendor/bootstrap-select/css/bootstrap-select.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎doc/_static/vendor/bootstrap/css/bootstrap.min.css

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎doc/_static/vendor/bootstrap/js/bootstrap.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎doc/_static/vendor/font-awesome/css/font-awesome.min.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

‎doc/_static/vendor/font-awesome/fonts/fontawesome-webfont.svg

+2,671
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
/**
2+
* Owl Carousel v2.2.0
3+
* Copyright 2013-2016 David Deutsch
4+
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
5+
*/
6+
/*
7+
* Owl Carousel - Core
8+
*/
9+
.owl-carousel {
10+
display: none;
11+
width: 100%;
12+
-webkit-tap-highlight-color: transparent;
13+
/* position relative and z-index fix webkit rendering fonts issue */
14+
position: relative;
15+
z-index: 1; }
16+
.owl-carousel .owl-stage {
17+
position: relative;
18+
-ms-touch-action: pan-Y; }
19+
.owl-carousel .owl-stage:after {
20+
content: ".";
21+
display: block;
22+
clear: both;
23+
visibility: hidden;
24+
line-height: 0;
25+
height: 0; }
26+
.owl-carousel .owl-stage-outer {
27+
position: relative;
28+
overflow: hidden;
29+
/* fix for flashing background */
30+
-webkit-transform: translate3d(0px, 0px, 0px); }
31+
.owl-carousel .owl-item {
32+
position: relative;
33+
min-height: 1px;
34+
float: left;
35+
-webkit-backface-visibility: hidden;
36+
-webkit-tap-highlight-color: transparent;
37+
-webkit-touch-callout: none; }
38+
.owl-carousel .owl-item img {
39+
display: block;
40+
width: 100%;
41+
-webkit-transform-style: preserve-3d; }
42+
.owl-carousel .owl-nav.disabled,
43+
.owl-carousel .owl-dots.disabled {
44+
display: none; }
45+
.owl-carousel .owl-nav .owl-prev,
46+
.owl-carousel .owl-nav .owl-next,
47+
.owl-carousel .owl-dot {
48+
cursor: pointer;
49+
cursor: hand;
50+
-webkit-user-select: none;
51+
-khtml-user-select: none;
52+
-moz-user-select: none;
53+
-ms-user-select: none;
54+
user-select: none; }
55+
.owl-carousel.owl-loaded {
56+
display: block; }
57+
.owl-carousel.owl-loading {
58+
opacity: 0;
59+
display: block; }
60+
.owl-carousel.owl-hidden {
61+
opacity: 0; }
62+
.owl-carousel.owl-refresh .owl-item {
63+
visibility: hidden; }
64+
.owl-carousel.owl-drag .owl-item {
65+
-webkit-user-select: none;
66+
-moz-user-select: none;
67+
-ms-user-select: none;
68+
user-select: none; }
69+
.owl-carousel.owl-grab {
70+
cursor: move;
71+
cursor: grab; }
72+
.owl-carousel.owl-rtl {
73+
direction: rtl; }
74+
.owl-carousel.owl-rtl .owl-item {
75+
float: right; }
76+
77+
/* No Js */
78+
.no-js .owl-carousel {
79+
display: block; }
80+
81+
/*
82+
* Owl Carousel - Animate Plugin
83+
*/
84+
.owl-carousel .animated {
85+
-webkit-animation-duration: 1000ms;
86+
animation-duration: 1000ms;
87+
-webkit-animation-fill-mode: both;
88+
animation-fill-mode: both; }
89+
90+
.owl-carousel .owl-animated-in {
91+
z-index: 0; }
92+
93+
.owl-carousel .owl-animated-out {
94+
z-index: 1; }
95+
96+
.owl-carousel .fadeOut {
97+
-webkit-animation-name: fadeOut;
98+
animation-name: fadeOut; }
99+
100+
@-webkit-keyframes fadeOut {
101+
0% {
102+
opacity: 1; }
103+
100% {
104+
opacity: 0; } }
105+
106+
@keyframes fadeOut {
107+
0% {
108+
opacity: 1; }
109+
100% {
110+
opacity: 0; } }
111+
112+
/*
113+
* Owl Carousel - Auto Height Plugin
114+
*/
115+
.owl-height {
116+
transition: height 500ms ease-in-out; }
117+
118+
/*
119+
* Owl Carousel - Lazy Load Plugin
120+
*/
121+
.owl-carousel .owl-item .owl-lazy {
122+
opacity: 0;
123+
transition: opacity 400ms ease; }
124+
125+
.owl-carousel .owl-item img.owl-lazy {
126+
-webkit-transform-style: preserve-3d;
127+
transform-style: preserve-3d; }
128+
129+
/*
130+
* Owl Carousel - Video Plugin
131+
*/
132+
.owl-carousel .owl-video-wrapper {
133+
position: relative;
134+
height: 100%;
135+
background: #000; }
136+
137+
.owl-carousel .owl-video-play-icon {
138+
position: absolute;
139+
height: 80px;
140+
width: 80px;
141+
left: 50%;
142+
top: 50%;
143+
margin-left: -40px;
144+
margin-top: -40px;
145+
background: url("owl.video.play.png") no-repeat;
146+
cursor: pointer;
147+
z-index: 1;
148+
-webkit-backface-visibility: hidden;
149+
transition: -webkit-transform 100ms ease;
150+
transition: transform 100ms ease; }
151+
152+
.owl-carousel .owl-video-play-icon:hover {
153+
-webkit-transform: scale(1.3, 1.3);
154+
-ms-transform: scale(1.3, 1.3);
155+
transform: scale(1.3, 1.3); }
156+
157+
.owl-carousel .owl-video-playing .owl-video-tn,
158+
.owl-carousel .owl-video-playing .owl-video-play-icon {
159+
display: none; }
160+
161+
.owl-carousel .owl-video-tn {
162+
opacity: 0;
163+
height: 100%;
164+
background-position: center center;
165+
background-repeat: no-repeat;
166+
background-size: contain;
167+
transition: opacity 400ms ease; }
168+
169+
.owl-carousel .owl-video-frame {
170+
position: relative;
171+
z-index: 1;
172+
height: 100%;
173+
width: 100%; }

‎doc/_static/vendor/owl.carousel/owl.carousel.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎doc/_static/vendor/owl.carousel/owl.theme.default.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.