Skip to content

Commit 87294a9

Browse files
committed
Website Homepage in Production!!
1 parent 1c23011 commit 87294a9

File tree

3 files changed

+96
-5
lines changed

3 files changed

+96
-5
lines changed

css/style.css

+60-5
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@
3434
src: url("../font/Berlin%20X-Bold.ttf") format("truetype");
3535
}
3636

37+
@font-face {
38+
font-family: "Bariol";
39+
src: url("../font/Bariol_Regular/Bariol_Regular.otf") format("truetype");
40+
}
41+
3742
body {
38-
background-image: url("../img/BodyBg.jpg");
3943
background-size: cover;
4044
-moz-background-size: cover;
4145
-o-background-size: cover;
4246
-webkit-background-size: cover;
43-
background-attachment: fixed;
47+
background: url("../img/BodyBg.jpg") fixed;
4448
}
4549

4650
.navbar {
@@ -125,13 +129,21 @@ body {
125129
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66ffffff,endColorstr=#66ffffff);
126130
}
127131

128-
.projects h1 {
132+
.row {
133+
margin-bottom: 0px;
134+
}
135+
136+
.row h1 {
129137
text-align: center;
130138
font-family: "Borg", sans-serif;
131139
font-size: 70px;
132140
color: white;
133141
}
134142

143+
.row h3 {
144+
font-size: 30px;
145+
}
146+
135147
.projects h3, h4 {
136148
text-align: center;
137149
font-family: "Berlin", sans-serif;
@@ -143,7 +155,7 @@ body {
143155
}
144156

145157
.card.small .card-content {
146-
height: 200px;
158+
height: 300px;
147159
}
148160

149161
.jumbotron {
@@ -232,4 +244,47 @@ nav .brand-logo {
232244
h3 {
233245
font-size: 20px;
234246
}
235-
}
247+
}
248+
249+
.projects div.card-content > h1 {
250+
margin-bottom: 0px;
251+
font-family: "Bariol", sans-serif;
252+
}
253+
254+
.contact {
255+
text-align: center;
256+
}
257+
258+
.contact h3 {
259+
font-family: "Berlin", sans-serif;
260+
}
261+
262+
.facebook-blue {
263+
background-color: #3B5998 ;
264+
}
265+
266+
.twitter-blue {
267+
background-color: #4099FF;
268+
}
269+
270+
.contact h1 {
271+
padding-top:20px;
272+
margin-top: 0px;
273+
}
274+
275+
div.card-content {
276+
height: 300px;
277+
}
278+
279+
.contact a.waves-circle {
280+
margin-left: 30px;
281+
margin-bottom: 20px;
282+
}
283+
284+
footer.page-footer {
285+
margin-top: 0px;
286+
}
287+
288+
.row .l12 {
289+
padding-bottom: 20px;
290+
}
84.2 KB
Binary file not shown.

index.html

+36
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,43 @@ <h3>We have a few projects right now. Here are a few projects we are doing.</h3>
101101
</div>
102102
</div>
103103
</div>
104+
<div class="col s12 m4">
105+
<div class="card small grey darken-4">
106+
<div class="card-content white-text">
107+
<h1><i class="mdi-navigation-more-horiz"></i> </h1>
108+
<h1>More Coming Soon.</h1>
109+
</div>
110+
</div>
111+
</div>
112+
</div>
113+
</div>
114+
115+
<div class="row contact black grey-text text-lighten-1">
116+
<div class="container">
117+
<h1>CONTACT US</h1>
118+
<h3>Want to help, or join in the dev? Contact us for more details!</h3>
119+
<a class="waves-effect waves-light btn grey darken-2">I Wanna talk!</a>
120+
<h3>We are available on the following websites, too!</h3>
121+
<a class="waves-effect waves-circle waves-light btn-floating black"><i class="fa fa-github"></i></a>
122+
<a class="waves-effect waves-circle waves-light btn-floating facebook-blue"><i class="fa fa-facebook"></i></a>
123+
<a class="waves-effect waves-circle waves-light btn-floating red"><i class="fa fa-google-plus"></i></a>
124+
<a class="waves-effect waves-circle waves-light btn-floating twitter-blue"><i class="fa fa-twitter"></i></a>
125+
<a class="waves-effect waves-circle waves-light btn-floating red darken-1"><i class="fa fa-pinterest-p"></i></a>
104126
</div>
105127
</div>
128+
<footer class="page-footer grey darken-4 white-text">
129+
<div class="container">
130+
<div class="row">
131+
<div class="col l12 s12">
132+
All code on this website is given, free of cost, to anyone and everyone using the Artistic License 2.0. <a href="http://www.github.com/quadcubedstudios/quadcubedstudios.github.io">Fork Me on Github</a>
133+
</div>
134+
</div>
135+
</div>
136+
<div class="footer-copyright black">
137+
<div class="container">
138+
Copyright© Quad Cubed Studios. All Rights Reserved.
139+
</div>
140+
</div>
141+
</footer>
106142
</body>
107143
</html>

0 commit comments

Comments
 (0)