Skip to content

Commit 5dec381

Browse files
authored
Add files via upload
1 parent daa4a0e commit 5dec381

File tree

17 files changed

+207
-47
lines changed

17 files changed

+207
-47
lines changed

assets/css/responsive.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
}
306306

307307
.slicknav_nav {
308-
/*background: url(../img/IceSpikes.png) no-repeat center / cover;*/
308+
/*background: url(../img/IceSpikes.jpg) no-repeat center / cover;*/
309309
background-color: rgba(0, 0, 0, 0.85);
310310
padding-left: 0;
311311
list-style: none;

assets/css/style.css

Lines changed: 86 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
--CompRed: rgb(255, 66, 66);
3939
--CompOrange: rgb(222, 144, 64);
4040
--CompBlue: rgb(114, 114, 255);
41+
--CompMiddle: rgb(255, 125, 222);
4142

4243
--IndexColor: var(--CompOrange);
4344
--VersionFourColor: var(--CompRed);
@@ -47,7 +48,9 @@
4748

4849
--VeryDarkGray: rgb(40, 40, 41);
4950
--DarkGray: rgb(68, 68, 72);
50-
--VeryLightGray: rgb(222, 222, 222);
51+
--VeryLightGray: rgb(254, 254, 254);
52+
53+
--ScreenshotOverlayColor: rgba(0, 0, 0, 0);
5154
}
5255

5356
@font-face {
@@ -837,7 +840,7 @@ html, body {
837840
/* HERO
838841
================================================== */
839842
.hero {
840-
background: url(../img/Taiga.png) no-repeat top / cover;
843+
background: url(../img/end.jpg) no-repeat top / cover;
841844
height: 100%;
842845
width: 100%;
843846
display: table;
@@ -846,7 +849,7 @@ html, body {
846849

847850
.overlay:before {
848851
content: '';
849-
background-color: rgba(0, 0, 0, 0.25);
852+
background-color: var(--ScreenshotOverlayColor);
850853
height: 100%;
851854
width: 100%;
852855
position: absolute;
@@ -856,16 +859,59 @@ html, body {
856859
}
857860

858861
.index-shader {
862+
max-width: 890px;
863+
width: 100%;
864+
margin-bottom: 50px;
865+
margin-left: -20px;
866+
margin-right: -20px;
867+
padding: 40px 15px;
868+
text-align: center;
869+
859870
border-radius: 10px;
871+
}
860872

873+
.index-reimagined {
874+
float: left;
875+
max-width: 50%;
876+
background: url(../img/reimage.jpg) no-repeat top / cover;
861877
}
862878

863879
.index-v4 {
864-
background: url(../img/IceSpikes.png) no-repeat top / cover;
880+
float: right;
881+
max-width: 50%;
882+
background: url(../img/v4image.jpg) no-repeat top / cover;
865883
}
866884

867-
.index-reimagined {
868-
background: url(../img/Rdeepslate.png) no-repeat top / cover;
885+
.index-shader h2 {
886+
font-family: 'minecraftchmc';
887+
position: relative;
888+
margin: 0;
889+
color: var(--VeryLightGray);;
890+
font-size: 40px;
891+
}
892+
893+
.index-shader p {
894+
position: relative;
895+
margin: 30px 0 30px;
896+
font-size: 20px;
897+
color: var(--VeryLightGray);;
898+
max-width: 100%;
899+
}
900+
901+
.index-shader .btn {
902+
position: relative;
903+
margin: 5px;
904+
background-color: transparent;
905+
max-width: 100%;
906+
}
907+
908+
.index-shader .btn:focus {
909+
color: var(--VeryLightGray);
910+
}
911+
.index-shader .btn:hover {
912+
background-color: rgba(0, 0, 0, 0.25);
913+
color: var(--ThemeColor);
914+
border-color: var(--VeryLightGray);
869915
}
870916

871917
.hero-content {
@@ -943,16 +989,12 @@ html, body {
943989
-ms-transform: translateX(-50%);
944990
}
945991

946-
.index-version-four {
947-
background: url(../img/IceSpikes.png) no-repeat top / cover;
948-
}
949-
950992
.subpage-hero {
951993
height: 400px;
952994
}
953995

954996
.subpage-hero.overlay:before {
955-
background-color: rgba(38, 39, 45, 0.25);
997+
background-color: var(--ScreenshotOverlayColor);
956998
}
957999

9581000
.subpage-hero .hero-content,
@@ -966,11 +1008,11 @@ html, body {
9661008
}
9671009

9681010
.reimagined-hero {
969-
background: url(../img/Rdeepslate.png) no-repeat center / cover;
1011+
background: url(../img/reimage.jpg) no-repeat center / cover;
9701012
}
9711013

9721014
.shaders-v4-hero {
973-
background: url(../img/IceSpikes.png) no-repeat center / cover;
1015+
background: url(../img/v4image.jpg) no-repeat center / cover;
9741016
}
9751017

9761018
.portfolio-hero {
@@ -982,7 +1024,7 @@ html, body {
9821024
}
9831025

9841026
.contact-hero {
985-
background: url(../img/MountainsNearOcean.png) no-repeat center / cover;
1027+
background: url(../img/MountainsNearOcean.jpg) no-repeat center / cover;
9861028
}
9871029

9881030
.overlayer {
@@ -1034,9 +1076,24 @@ html, body {
10341076

10351077
/* SITEMAIN
10361078
================================================== */
1079+
1080+
1081+
table, th, td {
1082+
margin-top: 35px;
1083+
margin-left: auto;
1084+
margin-right: auto;
1085+
1086+
border:1px solid var(--VeryLightGray);
1087+
1088+
text-align:center;
1089+
font-size: 16px;
1090+
padding: 4px;
1091+
}
1092+
1093+
10371094
/* site-section */
10381095
.site-section {
1039-
padding: 60px 0 60px;
1096+
padding: 50px 0 60px;
10401097
background-color: var(--VeryDarkGray);
10411098
}
10421099

@@ -1072,7 +1129,6 @@ html, body {
10721129
}
10731130

10741131
.section-features p {
1075-
10761132
color: var(--VeryLightGray);
10771133
}
10781134

@@ -1082,6 +1138,20 @@ html, body {
10821138
height: 380px;
10831139
}
10841140

1141+
/* Section: Screenshots */
1142+
.section-screenshots {
1143+
margin-top: -65px;
1144+
}
1145+
.section-screenshots img {
1146+
padding-top: 50px;
1147+
display: block;
1148+
width: 960px;
1149+
height: auto;
1150+
left: 0;
1151+
right: 0;
1152+
margin: auto;
1153+
}
1154+
10851155
/* Section: Services */
10861156
.section-services .subheading-text {
10871157
margin-bottom: 90px;
@@ -1105,26 +1175,6 @@ html, body {
11051175
font-size: 13px;
11061176
}
11071177

1108-
/* Section: Map Feature */
1109-
.section-map-feature {
1110-
padding-top: 250px;
1111-
background: #071021 url(../img/map.png) no-repeat top center / cover;
1112-
}
1113-
1114-
.section-map-feature h2 {
1115-
padding-bottom: 30px;
1116-
margin: 0;
1117-
}
1118-
1119-
.section-map-feature h2,
1120-
.section-map-feature p {
1121-
color: #fff;
1122-
}
1123-
1124-
.section-map-feature .btn {
1125-
margin: 80px 0 215px;
1126-
}
1127-
11281178
.counter {
11291179
margin-bottom: 30px;
11301180
font-size: 40px;

assets/img/GiantTaiga.jpg

1.13 MB
Loading

assets/img/IceSpikes.jpg

933 KB
Loading

assets/img/IceSpikesR.jpg

1.49 MB
Loading

assets/img/MountainsNearOcean.jpg

1.1 MB
Loading

assets/img/Rdeepslate.jpg

728 KB
Loading

assets/img/Rsky.jpg

1010 KB
Loading

assets/img/RskyNight.jpg

811 KB
Loading

assets/img/Taiga.jpg

1.43 MB
Loading

0 commit comments

Comments
 (0)