Skip to content

Commit

Permalink
Optimized mobile CSS more.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Jackson authored and Paul Jackson committed Aug 13, 2012
1 parent d7f9d46 commit 7fbad80
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 27 deletions.
2 changes: 1 addition & 1 deletion build/theme-gcwu-fegc/css/theme-min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/theme-gcwu-fegc/css/theme-serv-min.css

Large diffs are not rendered by default.

Binary file modified build/theme-gcwu-fegc/images/bg-waves.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/theme-gcwu-fegc/images/bg-waves.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 13 additions & 25 deletions src/theme-gcwu-fegc/sass/includes/default-mobile.scss
Expand Up @@ -104,8 +104,12 @@ body{
font-size:1.1em;
width:auto !important;
background:#111;
background:-webkit-linear-gradient(#3C3C3C, #111111) #111111;
background:-moz-linear-gradient(#3C3C3C, #111111) #111111;
background-image:-webkit-gradient(linear,left top,left bottom,from(#3C3C3C),to(#111111));
background-image:-webkit-linear-gradient(#3C3C3C,#111111);
background-image:-moz-linear-gradient(#3C3C3C,#111111);
background-image:-ms-linear-gradient(#3C3C3C,#111111);
background-image:-o-linear-gradient(#3C3C3C,#111111);
background-image:linear-gradient(#3C3C3C,#111111);
border-bottom:1px solid #2A2A2A;
border-top:1px solid #2A2A2A;
color:#FFF;
Expand Down Expand Up @@ -180,16 +184,6 @@ h2,h3,h4,h5,h6,p,blockquote,table,form,img,pre{
#gcwu-sft-in{
border-top: 1px solid #CCCCCC;
padding: 5px;
&:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
section:nth-child(3n-1),div:nth-child(3n-1){
clear:both;
}
div{
width:50%;
float:left;
Expand Down Expand Up @@ -273,7 +267,6 @@ img{
border-top:1px solid #044062;
h2 {
text-shadow:0 1px 1px #044062;
border-right:#15598F;
background:#4E7EB7;
background-image:-webkit-gradient(linear,left top,left bottom,from(#5383BC),to(#225C96));
background-image:-webkit-linear-gradient(#5383BC,#225C96);
Expand Down Expand Up @@ -345,11 +338,9 @@ img{

#gcwu-bnr{
background:#4E7EB7;
background: -moz-linear-gradient(#5383B7, #225C96) repeat scroll 0 0 #4E7EB7;
background:-webkit-linear-gradient(#5383B7, #225C96) repeat scroll 0 0 #4E7EB7;
}

#gcwu-priorities ul,#gcwu-date-mod,#gcwu-gcft ul,#wb-head{
#gcwu-priorities ul,#gcwu-date-mod,#gcwu-gcft ul,#wb-head,#gcwu-sft-in,#jqm-wb-mb #gcwu-bc-in ol{
&:after{
content:".";
display:block;
Expand Down Expand Up @@ -451,8 +442,12 @@ img{
}
#gcwu-bc-in {
background:#DFDFDD;
background:-webkit-linear-gradient(#F0EFEF, #DFDFDD) #DFDFDD;
background:-moz-linear-gradient(#F0EFEF, #DFDFDD) #DFDFDD;
background-image:-webkit-gradient(linear,left top,left bottom,from(#F0EFEF),to(#DFDFDD));
background-image:-webkit-linear-gradient(#F0EFEF,#DFDFDD);
background-image:-moz-linear-gradient(#F0EFEF,#DFDFDD);
background-image:-ms-linear-gradient(#F0EFEF,#DFDFDD);
background-image:-o-linear-gradient(#F0EFEF,#DFDFDD);
background-image:linear-gradient(#F0EFEF,#DFDFDD);
color: #555;
border-radius:0;
-moz-border-radius:0;
Expand Down Expand Up @@ -490,13 +485,6 @@ img{
margin: 0;
padding: 0;
font-size:90%;
&:after {
clear: both;
content: ".";
display: block;
height: 0;
visibility: hidden;
}
}
}
}
Expand Down

0 comments on commit 7fbad80

Please sign in to comment.