Team:Manchester/main.html
From 2014.igem.org
(Difference between revisions)
Line 26: | Line 26: | ||
h2 { | h2 { | ||
font-size: 2em; | font-size: 2em; | ||
- | margin: 0.67em ; | + | margin: 0.67em ;} |
- | } | + | a:hover{ |
+ | text-decoration: none;} | ||
- | + | ||
- | width: | + | #content .igem-logo { |
- | height: | + | width: 80px; |
+ | height: 90px; | ||
margin-right: 120px; | margin-right: 120px; | ||
margin-top: 20px; | margin-top: 20px; | ||
float: right; | float: right; | ||
- | } | + | } |
+ | |||
+ | #content .igem-logo:hover { | ||
+ | width:90px; | ||
+ | height:100px; | ||
+ | } | ||
#content { background: #d0d0d0;} | #content { background: #d0d0d0;} | ||
+ | |||
+ | |||
+ | @import url('normalize.css'); | ||
+ | |||
+ | /* General Layout Style of the wiki */ | ||
+ | body{ | ||
+ | /*font-family: Cambria, Georgia, serif;*/ | ||
+ | /*font-family: 'PT Sans Narrow', Arial, sans-serif;*/ | ||
+ | font-family: 'Roboto', serif; | ||
+ | font-size:12px; | ||
+ | /*background: #f9f9f9 url(../images/bg.jpg);*/ | ||
+ | /*background: #f0e6fa;*/ | ||
+ | background: #d0d0d0; | ||
+ | /*font-weight: 300;*/ | ||
+ | /*font-size: 15px;*/ | ||
+ | color: #333; | ||
+ | -webkit-font-smoothing: antialiased; | ||
+ | overflow-y: scroll; | ||
+ | overflow-x: hidden; | ||
+ | width:100%; | ||
+ | } | ||
+ | |||
+ | a{ | ||
+ | color: #ff9900; | ||
+ | text-decoration: none; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Container for the web page */ | ||
+ | .container{ | ||
+ | width: 100%; | ||
+ | /*position: relative;*/ | ||
+ | } | ||
+ | |||
+ | |||
+ | .clr{ | ||
+ | clear: both; | ||
+ | padding: 0; | ||
+ | height: 0; | ||
+ | margin: 0; | ||
+ | } | ||
+ | .main{ | ||
+ | width: 90%; | ||
+ | margin: 0 auto; | ||
+ | position: relative; | ||
+ | } | ||
+ | .container > header{ | ||
+ | margin: 0px; | ||
+ | /*position: relative;*/ | ||
+ | display: block; | ||
+ | /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/ | ||
+ | text-align: center; | ||
+ | } | ||
+ | .container > header h1{ | ||
+ | font-size: 32px; | ||
+ | line-height: 32px; | ||
+ | margin: 0; | ||
+ | position: relative; | ||
+ | font-weight: 300; | ||
+ | color: #777; | ||
+ | /*text-shadow: 1px 1px 1px rgba(255,255,255,0.7);*/ | ||
+ | } | ||
+ | .container > header h2{ | ||
+ | font-size: 100px; | ||
+ | font-weight: 300; | ||
+ | font-style: italic; | ||
+ | margin: 0; | ||
+ | padding: 15px 0 5px 0; | ||
+ | color: #888; | ||
+ | /*text-shadow: 1px 1px 1px rgba(0,0,0,0.9);*/ | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | /* Login bar Style */ | ||
+ | .login-bar{ | ||
+ | position: fixed; | ||
+ | top:0%; | ||
+ | width: 100%; | ||
+ | line-height: 20px; | ||
+ | font-size: 11px; | ||
+ | /*background: #fff;*/ | ||
+ | background: rgba(224, 204, 245, 1); | ||
+ | text-transform: uppercase; | ||
+ | z-index: 9999; | ||
+ | box-shadow: 0px 4px 7px rgba(0,0,0,0.25); | ||
+ | padding: 0px 15px; | ||
+ | } | ||
+ | .login-bar a{ | ||
+ | padding: 0px 10px; | ||
+ | letter-spacing: 0px; | ||
+ | color: #333; | ||
+ | display: inline-block; | ||
+ | float: left; | ||
+ | } | ||
+ | .login-bar a:hover{ | ||
+ | background: rgba(150, 150, 150,0.15); | ||
+ | } | ||
+ | .login-bar span.right{ | ||
+ | float: right; | ||
+ | } | ||
+ | .login-bar span.right a{ | ||
+ | float: left; | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Le logos */ | ||
+ | .logos { | ||
+ | overflow: hidden; | ||
+ | /*padding: 20px 500px;*/ | ||
+ | padding-top: 30px; | ||
+ | } | ||
+ | |||
+ | .uni-logo { | ||
+ | position: relative; | ||
+ | } | ||
+ | |||
+ | .mib-logo { | ||
+ | margin-left: -10px; | ||
+ | position: relative; | ||
+ | } | ||
+ | .igem-logo { | ||
+ | height: 70px; | ||
+ | width: 90px; | ||
+ | position: relative; | ||
+ | float: right; | ||
+ | margin-right: 140px; | ||
+ | -webkit-transition: all 0.5s ease; | ||
+ | -moz-transition: all 0.5s ease; | ||
+ | -o-transition: all 0.5s ease; | ||
+ | } | ||
+ | |||
+ | .igem-logo:hover { | ||
+ | height: 80px; | ||
+ | width: 100px; | ||
+ | position:relative; | ||
+ | } | ||
+ | |||
+ | .support-note span{ | ||
+ | color: #ac375d; | ||
+ | font-size: 16px; | ||
+ | display: none; | ||
+ | font-weight: bold; | ||
+ | text-align: center; | ||
+ | padding: 5px 0; | ||
+ | } | ||
+ | .no-cssanimations .support-note span.no-cssanimations, | ||
+ | .no-csstransforms .support-note span.no-csstransforms, | ||
+ | .no-csstransforms3d .support-note span.no-csstransforms3d, | ||
+ | .no-csstransitions .support-note span.no-csstransitions{ | ||
+ | display: block; | ||
+ | } | ||
+ | |||
</style> | </style> |
Revision as of 21:15, 14 August 2014
University of Manchester
Meet The Team
Project Overview
Battling against obesity
Wiki coming soon...