Skip to content

Commit 36eb00a

Browse files
author
Christian Strappazzon
committed
Init, first shot
1 parent 9b59433 commit 36eb00a

21 files changed

+1295
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,6 @@ docs/_build/
5555

5656
# PyBuilder
5757
target/
58+
59+
# Other
60+
.idea/

assets/css/bootstrap-theme.css

Lines changed: 239 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,239 @@
1+
/*******************************/
2+
/* Navigatioin */
3+
/*******************************/
4+
.navbar-inverse {
5+
border-radius: 0;
6+
background: rgba(0, 0, 0, .8);
7+
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
8+
min-height: 100px;
9+
padding: 5px 0;
10+
margin-bottom: 0;
11+
}
12+
13+
.navbar-inverse *:focus {
14+
outline: 0;
15+
}
16+
17+
@media (max-width: 767px) {
18+
.navbar-inverse {
19+
background: rgba(0, 0, 0, .9);
20+
}
21+
}
22+
23+
.navbar-inverse .navbar-nav > li > a,
24+
.navbar-inverse .navbar-nav > .open ul > a {
25+
color: rgba(255, 255, 255, .4);
26+
}
27+
28+
.navbar-inverse .navbar-nav > .active > a,
29+
.navbar-inverse .navbar-nav > .active > a:hover,
30+
.navbar-inverse .navbar-nav > .active > a:focus {
31+
color: #fff;
32+
background: none;
33+
}
34+
35+
.navbar-inverse .navbar-nav > .open > a {
36+
background: none;
37+
color: white;
38+
}
39+
40+
.navbar-inverse .navbar-nav > li > a:hover,
41+
.navbar-inverse .navbar-nav > li > a:focus,
42+
.navbar-inverse .navbar-nav > .open > a:hover,
43+
.navbar-inverse .navbar-nav > .open > a:focus {
44+
background: none;
45+
color: white;
46+
}
47+
48+
.navbar-inverse .navbar-nav > .active > a {
49+
background: none;
50+
color: white;
51+
}
52+
53+
.navbar-inverse .navbar-brand {
54+
font-family: "Open sans", helvetica, arial;
55+
font-size: 24px;
56+
color: white;
57+
padding: 0 0 0 15px;
58+
margin: 12px 0 0 0;
59+
}
60+
61+
.navbar-inverse .navbar-brand img {
62+
margin-top: -8px;
63+
}
64+
65+
.navbar-nav .dropdown-menu {
66+
left: -5px;
67+
font-size: 13px;
68+
background-color: rgba(0, 0, 0, .7);
69+
border: 0px none;
70+
-webkit-border-radius: 0px;
71+
-moz-border-radius: 0px;
72+
border-radius: 0px;
73+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
74+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
75+
}
76+
77+
.navbar-nav .dropdown-menu > li > a {
78+
color: rgba(255, 255, 255, .7);
79+
padding: 7px 20px;
80+
}
81+
82+
.navbar-nav .dropdown-menu > li > a:hover,
83+
.navbar-nav .dropdown-menu > li > a:focus,
84+
.navbar-nav .dropdown-menu > .active > a:hover {
85+
background: rgba(255, 255, 255, .1);
86+
color: white;
87+
}
88+
89+
.navbar-nav .dropdown-menu > .active > a,
90+
.navbar-nav .dropdown-menu > .active > a:focus {
91+
background: none;
92+
color: #fff;
93+
}
94+
95+
.navbar-nav .btn {
96+
border: 1px solid rgba(255, 255, 255, .2);
97+
margin-left: 5px;
98+
margin-top: 5px;
99+
padding-top: 10px;
100+
padding-bottom: 10px;
101+
}
102+
103+
.navbar-nav a.btn:focus,
104+
.navbar-nav a.btn:hover {
105+
border: 1px solid rgba(255, 255, 255, .6);
106+
}
107+
108+
.navbar-collapse {
109+
border: 0 none;
110+
border-top: 0 none;
111+
box-shadow: none;
112+
}
113+
114+
@media (max-width: 767px) {
115+
.navbar-collapse ul {
116+
text-align: center;
117+
width: 100%;
118+
padding-bottom: 10px;
119+
}
120+
121+
.navbar-collapse ul .btn {
122+
max-width: 50%;
123+
margin: 0 auto;
124+
}
125+
}
126+
127+
.navbar-static-top,
128+
.navbar-fixed-top,
129+
.navbar-fixed-bottom {
130+
border-radius: 0;
131+
}
132+
133+
/*******************************/
134+
/* Buttons */
135+
/*******************************/
136+
.btn-default, .btn-primary, .btn-success, .btn-action
137+
.btn-info, .btn-warning, .btn-danger {
138+
text-shadow: 0 2px 1px rgba(0, 0, 0, .2);
139+
}
140+
141+
.btn {
142+
padding: 10px 40px;
143+
font-weight: bold;
144+
border: 0 none;
145+
-webkit-border-radius: 3px;
146+
-moz-border-radius: 3px;
147+
border-radius: 3px;
148+
}
149+
150+
.btn-lg {
151+
padding: 15px 65px;
152+
font-size: 14px;
153+
font-weight: bold;
154+
}
155+
156+
.btn-default {
157+
text-shadow: none;
158+
background: transparent;
159+
color: rgba(50, 50, 50, .5);
160+
-webkit-box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .5);
161+
-moz-box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .5);
162+
box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .5);
163+
}
164+
165+
.btn-default:hover,
166+
.btn-default:focus {
167+
color: rgba(50, 50, 50, .8);
168+
-webkit-box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .8);
169+
-moz-box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .8);
170+
box-shadow: inset 0px 0px 0px 3px rgba(50, 50, 50, .8);
171+
background: transparent;
172+
}
173+
174+
.btn-default:active,
175+
.btn-default.active {
176+
color: #333;
177+
-webkit-box-shadow: inset 0px 0px 0px 3px #333;
178+
-moz-box-shadow: inset 0px 0px 0px 3px #333;
179+
box-shadow: inset 0px 0px 0px 3px #333;
180+
background: transparent;
181+
}
182+
183+
.btn-action,
184+
.btn-primary {
185+
color: #FFEFD7;
186+
background-image: -webkit-linear-gradient(top, #FF9B22 0%, #FF8C00 100%);
187+
background-image: linear-gradient(to bottom, #FF9B22 0%, #FF8C00 100%);
188+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFF9B22', endColorstr='#ffFF8C00', GradientType=0);
189+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
190+
background-repeat: repeat-x;
191+
border: 0 none;
192+
}
193+
194+
.btn-action:hover,
195+
.btn-action:focus {
196+
color: #fff;
197+
background: #FF9B22;
198+
}
199+
200+
.btn-action:active {
201+
background: #FF8C00;
202+
}
203+
204+
/*******************************/
205+
/* Jumbotron */
206+
/*******************************/
207+
.jumbotron {
208+
color: inherit;
209+
background-color: #F7F5F4;
210+
padding-top: 30px;
211+
padding-bottom: 30px;
212+
margin-bottom: 0;
213+
}
214+
215+
.container .jumbotron {
216+
-webkit-border-radius: 3px;
217+
-moz-border-radius: 3px;
218+
border-radius: 3px;
219+
padding-left: 40px;
220+
padding-right: 40px;
221+
}
222+
223+
.jumbotron p {
224+
font-size: inherit;
225+
}
226+
227+
.jumbotron h2, .jumbotron h3, .jumbotron h4,
228+
.jumbotron h5, .jumbotron h6 {
229+
line-height: 1.3em;
230+
}
231+
232+
/*******************************/
233+
/* Images */
234+
/*******************************/
235+
.img-rounded {
236+
-webkit-border-radius: 3px;
237+
-moz-border-radius: 3px;
238+
border-radius: 3px;
239+
}

assets/css/bootstrap.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/font-awesome.min.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/main.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/* Header */
2+
#head { background:#181015 url( ../images/bg_header.jpg) no-repeat; background-size: cover; min-height:520px; text-align: center; padding-top:240px; color:white; font-family:"Open sans", Helvetica, Arial; font-weight:300; }
3+
#head.secondary { height:100px; min-height: 100px; padding-top:0px; }
4+
#head .lead { font-family:"Open sans", Helvetica, Arial; font-size:44px; margin-bottom:6px; color:white; line-height:1.15em; }
5+
#head .tagline { color:rgba(255,255,255,0.75); margin-bottom:25px; }
6+
#head .tagline a { color:#fff; }
7+
#head .btn { margin-bottom:10px;}
8+
#head .btn-default { text-shadow: none; background:transparent; color:rgba(255,255,255,.5); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); -moz-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); background: transparent; }
9+
#head .btn-default:hover,
10+
#head .btn-default:focus { color:rgba(255,255,255,.8); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); -moz-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); background: transparent; }
11+
#head .btn-default:active,
12+
#head .btn-default.active { color:#fff; -webkit-box-shadow:inset 0px 0px 0px 3px #fff; -moz-box-shadow:inset 0px 0px 0px 3px #fff; box-shadow:inset 0px 0px 0px 3px #fff; background: transparent; }
13+
14+
@media (max-width: 767px) {
15+
#head { min-height:420px; padding-top:160px; }
16+
#head .lead { font-size: 34px; }
17+
}
18+
19+
20+
/* Autohide navbar */
21+
.slideUp { top:-100px; }
22+
.headroom { -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; -o-transition: all 0.4s ease-out; transition: all 0.4s ease-out; }
23+
24+
25+
/* Highlights (in jumbotron in most cases) */
26+
.highlight { margin-top:40px; }
27+
.h-caption { text-align: center; }
28+
.h-caption i { display:block; font-size: 54px; color:#382526; margin-bottom:36px; }
29+
.h-caption h4 { color:#382526; font-size: 16px; font-weight: bold; margin-bottom:20px; }
30+
.h-body { }
31+
32+
33+
/* Typography */
34+
h1, h2, h3, h4, h5, h6 { font-family:"Open sans", Helvetica, Arial; }
35+
h1, .h1, h2, .h2, h3, .h3 { margin-top:30px; }
36+
blockquote { font-style: italic; font-family: Georgia; color:#999; margin:30px 0 30px; }
37+
label { color: #777; }
38+
.thin { font-weight:300; }
39+
.page-title { margin-top:20px; font-weight:300; }
40+
.text-muted { color:#888; }
41+
.breadcrumb { background:none; padding:0; margin:30px 0 0px 0; }
42+
ul.list-spaces li{ margin-bottom:10px; }
43+
44+
/* Helpers */
45+
.container-full { margin: 0 auto; width: 100%; }
46+
.top-space { margin-top: 60px; }
47+
.top-margin { margin-top:20px; }
48+
49+
img { max-width:100%; }
50+
img.pull-right { margin-left: 10px; }
51+
img.pull-left { margin-right: 10px; }
52+
#map { width:100%; height:280px; }
53+
#social { margin-top:50px; margin-bottom:50px; }
54+
#social .wrapper { width:340px; margin:0 auto; }
55+
56+
/* Main content block */
57+
.maincontent { }
58+
59+
/* Sidebars */
60+
.sidebar { padding-top:36px; padding-bottom:30px; }
61+
.sidebar .widget { margin-bottom:20px; }
62+
.sidebar h1, .sidebar .h1, .sidebar h2, .sidebar .h2, .sidebar h3, .sidebar .h3 { margin-top:20px; }
63+
64+
/* Footer */
65+
.footer1 { background: #232323; padding: 30px 0 0 0; font-size: 12px; color: #999; }
66+
.footer1 a { color: #ccc; }
67+
.footer1 a:hover {color: #fff; }
68+
.footer1 .widget { margin-bottom:30px; }
69+
.footer1 .widget-title { font-size: 17px; font-weight: bold; color: #ccc; margin: 0 0 20px; }
70+
.footer1 .entry-meta { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; margin: 0 0 35px 0; padding: 2px 0; color: #888888; font-size: 12px; font-size: 0.75rem; }
71+
.footer1 .entry-meta a { color: #333333; }
72+
.footer1 .entry-meta .meta-in { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px 0; }
73+
.follow-me-icons { font-size:30px; }
74+
.follow-me-icons i { float:left; margin:0 10px 0 0; }
75+
76+
.footer2 { background: #191919; padding: 15px 0; color: #777; font-size: 12px; }
77+
.footer2 a { color: #aaa; }
78+
.footer2 a:hover { color: #fff; }
79+
.footer2 p { margin: 0; }
80+
81+
.widget-simplenav { margin-left:-5px; }
82+
.widget-simplenav a{ margin:0 5px; }

assets/fonts/FontAwesome.otf

104 KB
Binary file not shown.
67.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)