Skip to content

Commit

Permalink
CSS fixes for FF & Chrome
Browse files Browse the repository at this point in the history
Fixing the flickering seen in Chrome together with the hover Issue
introduced with Mozilla Firefox 45
  • Loading branch information
BlackSkorpio committed Mar 14, 2016
1 parent 1c5868c commit 09df633
Show file tree
Hide file tree
Showing 5 changed files with 323 additions and 215 deletions.
118 changes: 118 additions & 0 deletions OxyGen/css/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/* FOOTER STYLES */
oxygen-footer {
width: 100%;
height: 100px;
/* position:absolute;*/
bottom: 0px;
background-color: #CCCCCC;
display: block;
clear: both;
border-bottom: 1px solid #666;
}
.oxygen-footer-tiny {
height: 70px !important;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #000;
}
oxygen-footer-inside {
max-width: 750px;
display: block;
margin: 0 auto;
}
.oxygen-footer-menu-wrapper {
width: 100%;
height: 50px;
/* position:absolute;*/
bottom: 100px;
display: block;
clear: both;
background: none repeat scroll 0% 0% #333;
background-color: #333;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #ffffff;
}
.oxygen-footer-menu {
height: 25px;
max-width: 750px;
}
.oxygen-footer-menu li{
white-space: nowrap;
line-height: 2.6em;
font-size: 1.1em !important;
color: #fff;
text-decoration: none;
list-style-type: none;
padding: 0px 12px 0px 0px;
display: inline;
}
.oxygen-left {
float:left;
}
.oxygen-right {
float: right;
}
.oxygen-tagline, .oxygen-copyright {
font-size: 0.5em;
margin-top: 20px;
display: block;
padding: 0 10px 0 5px;
}
.oxygen-tag-copy-link {
text-decoration: none;
color: #000000;
}
.oxygen-social {
display: block;
font-size: 0.8em;
margin-top: 10px;
margin-left: 15px;
line-height: 40px;
}
.oxygen-social-label {
display: inline-table;
padding-left: 2px;
/* line-height: 1em;*/
font-size: 1em;
color: #000;
text-decoration: none;
}
.oxygen-col-1,
.oxygen-col-2,
.oxygen-col-3,
.oxygen-col-4 {
padding-right: 5px;
}

/* Circle Avatar Styles */

.oxygen-circle {
line-height: 0; /* remove line-height */
display: inline-block; /* circle wraps image */
margin: 15px 5px 5px;
border: 2px solid #020202;
border-radius: 50%; /* relative value */
/*box-shadow: 0px 0px 5px rgba(0,0,0,0.4);*/
transition: linear 0.25s;
height: 32px;
width: 32px;
}
.oxygen-circle img {
border-radius: 50%; /* relative value for
adjustable image size */
}
.oxygen-circle:hover {
transition: ease-out 0.2s;
border: 2px solid rgba(255,255,255,0.8);
-webkit-transition: ease-out 0.2s;
border-radius: 50%;
}
/* EOF FOOTER STYLES */
10 changes: 0 additions & 10 deletions OxyGen/css/picinfo.css
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,3 @@ li.picinfodetail {
}
/*TAGGS Styling EOF
*/

#cats.tagdetail {
/*background-image: url("../inc/components/img/exif/cats1-icon.jpg");
background-image: url("../inc/components/img/exif/cats2-icon.png");*/
background-image: url("../inc/components/img/exif/cats3-icon.gif");
}
#cats.tagdetail:hover {
color: #000;
font-weight: 700;
}
Loading

0 comments on commit 09df633

Please sign in to comment.