Skip to content

Commit bfc477b

Browse files
author
Rafael J. Staib
committed
Add finish startpage design
1 parent 85058ff commit bfc477b

File tree

9 files changed

+223
-108
lines changed

9 files changed

+223
-108
lines changed

V2/V2.v11.suo

11 KB
Binary file not shown.

V2/bin/V2.dll

0 Bytes
Binary file not shown.

V2/bin/V2.pdb

0 Bytes
Binary file not shown.

V2/content/base.css

Lines changed: 97 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -905,38 +905,48 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
905905

906906
body
907907
{
908-
background: url("images/bg.jpg") repeat;
908+
background: url("images/bg.jpg") fixed repeat;
909+
color: #193954;
909910
font-size: 0.875em;
910911
line-height: 1.429em;
911912
}
912913

913914
h1, h2, h3, h4, h5, h6
914915
{
915916
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
917+
font-weight: normal;
918+
}
919+
920+
.nowrap
921+
{
922+
white-space: nowrap;
916923
}
917924

918925
.sitewrapper
919926
{
920927
background: #fff;
921928
padding-top: 4.286em;
922-
margin-bottom: 4.286em;
929+
930+
-webkit-box-shadow: 0 0 12px 5px #e7e7e7;
931+
-moz-box-shadow: 0 0 12px 5px #e7e7e7;
932+
box-shadow: 0 0 12px 5px #e7e7e7;
923933
}
924934

925935
.sitewrapper > header
926936
{
927937
color: #2184be;
928938
position: relative;
929939
text-align: center;
930-
min-height: 22.857em;
931-
padding-top: 2.857em;
940+
/*min-height: 22.857em;*/
941+
padding: 2.857em 1.429em 4.286em;
932942
margin: 0;
933943

934-
background-color: #f9f9f9;
935-
background-image: -moz-linear-gradient(deg45, #f9f9f9, #f3f3f3);
936-
background-image: -ms-linear-gradient(deg45, #f9f9f9, #f3f3f3);
937-
background-image: -o-linear-gradient(deg45, #f9f9f9, #f3f3f3);
938-
background-image: -webkit-linear-gradient(deg45, #f9f9f9, #f3f3f3);
939-
background-image: linear-gradient(deg45, #f9f9f9, #f3f3f3);
944+
background-color: #eee;
945+
background-image: -moz-linear-gradient(0deg, #eee 0%, #f3f3f3 70%);
946+
background-image: -ms-linear-gradient(0deg, #eee 0%, #f3f3f3 70%);
947+
background-image: -o-linear-gradient(0deg, #eee 0%, #f3f3f3 70%);
948+
background-image: -webkit-linear-gradient(0deg, #eee 0%, #f3f3f3 70%);
949+
background-image: linear-gradient(0deg, #eee 0%, #f3f3f3 70%);
940950
}
941951

942952
.sitewrapper > header > h1
@@ -945,13 +955,20 @@ h1, h2, h3, h4, h5, h6
945955
font-weight: normal;
946956
line-height: 1.167em;
947957
margin-bottom: 0.4em;
958+
959+
-webkit-text-shadow: 2px 2px 3px rgba(100, 100, 115, 0.45);
960+
text-shadow: 2px 2px 3px rgba(100, 100, 115, 0.45);
948961
}
949962

950-
.sitewrapper > header > p.lead
963+
.sitewrapper > header > p
951964
{
952965
font-size: 2.429em;
953966
line-height: 1.235em;
954-
margin-bottom: 0.882em;
967+
margin: 0 auto 0.882em;
968+
width: 60%;
969+
970+
-webkit-text-shadow: 2px 2px 3px rgba(100, 100, 115, 0.45);
971+
text-shadow: 2px 2px 3px rgba(100, 100, 115, 0.45);
955972
}
956973

957974
.sitewrapper > header > .btn
@@ -968,6 +985,9 @@ h1, h2, h3, h4, h5, h6
968985
background-image: -o-linear-gradient(#39c, #69c);
969986
background-image: -webkit-linear-gradient(#39c, #69c);
970987
background-image: linear-gradient(#39c, #69c);
988+
989+
-webkit-text-shadow: 1px 1px 2px rgba(244, 244, 244, 0.65);
990+
text-shadow: 1px 1px 2px rgba(244, 244, 244, 0.65);
971991
}
972992

973993
.sitewrapper > header > .btn:hover,
@@ -978,6 +998,7 @@ h1, h2, h3, h4, h5, h6
978998

979999
.sitewrapper > .socialbar
9801000
{
1001+
background: #eee;
9811002
padding: 1.071em 1.429em;
9821003
text-align: center;
9831004
}
@@ -990,14 +1011,44 @@ h1, h2, h3, h4, h5, h6
9901011

9911012
.sitewrapper > .content
9921013
{
993-
padding: 40px 0 100px;
1014+
padding: 2.857em 0 4.286em;
9941015
}
9951016

996-
.sitewrapper > footer
1017+
.sitewrapper > .content.startpage
9971018
{
998-
padding: 20px 30px;
1019+
text-align: center;
9991020
}
10001021

1022+
.sitewrapper > .content.startpage h2
1023+
{
1024+
font-size: 1.714em;
1025+
line-height: 1.208em;
1026+
margin: 0.833em 0 0.667em;
1027+
}
1028+
1029+
.sitewrapper > .content.startpage p
1030+
{
1031+
font-size: 1.143em;
1032+
line-height: 1.250em;
1033+
}
1034+
1035+
body > footer
1036+
{
1037+
padding: 3.571em 1.429em;
1038+
text-align: center;
1039+
}
1040+
1041+
body > footer > .links
1042+
{
1043+
margin: 0;
1044+
padding: 0;
1045+
}
1046+
1047+
body > footer > .links > li
1048+
{
1049+
display: inline;
1050+
}
1051+
10011052
.navbar > .navbar-inner
10021053
{
10031054
background: none #2184be;
@@ -1021,8 +1072,8 @@ h1, h2, h3, h4, h5, h6
10211072

10221073
.navbar > .navbar-inner h1 > a
10231074
{
1024-
display: inline-block;
10251075
color: #fff;
1076+
display: inline-block;
10261077
padding: 1em;
10271078
text-decoration: none;
10281079
}
@@ -1052,6 +1103,7 @@ h1, h2, h3, h4, h5, h6
10521103
{
10531104
color: #fff;
10541105
display: block;
1106+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
10551107
padding: 1.429em 1.071em;
10561108
text-decoration: none;
10571109
}
@@ -1105,51 +1157,53 @@ h1, h2, h3, h4, h5, h6
11051157

11061158
@media (max-width: 1199px)
11071159
{
1160+
.sitewrapper > header > p
1161+
{
1162+
width: 80%;
1163+
}
11081164
}
11091165

11101166
@media (max-width: 979px)
11111167
{
1112-
.sitewrapper > header
1168+
.sitewrapper
11131169
{
1114-
padding: 0;
1170+
padding-top: 0;
1171+
margin: 0 -1.429em;
1172+
width: auto;
1173+
1174+
-webkit-box-shadow: none;
1175+
-moz-box-shadow: none;
1176+
box-shadow: none;
11151177
}
11161178

1117-
.container.startpage h2
1179+
.sitewrapper > .content.startpage h2
1180+
{
1181+
font-size: 20px;
1182+
}
1183+
1184+
.navbar
11181185
{
1119-
font-size: 20px;
1186+
margin-bottom: 0;
11201187
}
11211188
}
11221189

11231190
@media (max-width: 767px)
11241191
{
1125-
.sitewrapper > header
1126-
{
1127-
margin: -20px -20px 0;
1128-
}
1129-
11301192
.sitewrapper > .content
11311193
{
1132-
padding: 40px 20px 100px;
1194+
padding-left: 1.429em;
1195+
padding-right: 1.429em;
11331196
}
11341197

1135-
.sitewrapper > .content,
1136-
.sitewrapper > footer
1137-
{
1138-
margin: 0 -20px;
1139-
}
1140-
1141-
.container.startpage h2
1198+
.sitewrapper > .content.startpage h2
11421199
{
11431200
font-size: 28px;
11441201
}
1145-
}
11461202

1147-
@media (max-width: 479px)
1148-
{
11491203
.navbar > .navbar-inner h1
11501204
{
11511205
float: none;
1152-
margin-top: 0.5em;
1206+
margin: 0.5em 0 0;
11531207
text-align: center;
11541208
width: 100%;
11551209
}
@@ -1162,7 +1216,7 @@ h1, h2, h3, h4, h5, h6
11621216
.navbar > .navbar-inner nav
11631217
{
11641218
float: none;
1165-
margin-bottom: 0.714em;
1219+
margin: 0 0 0.714em;
11661220
text-align: center;
11671221
width: 100%;
11681222
}
@@ -1172,3 +1226,8 @@ h1, h2, h3, h4, h5, h6
11721226
padding: 0.714em 1.071em;
11731227
}
11741228
}
1229+
1230+
@media (max-width: 479px)
1231+
{
1232+
1233+
}

V2/content/base.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)