Skip to content

Commit

Permalink
Added GDG logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fixpoint committed Mar 23, 2012
1 parent 332485e commit e85ecb8
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 3 deletions.
11 changes: 11 additions & 0 deletions font/open-sans/font.css
Expand Up @@ -19,3 +19,14 @@
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: 'Open Sans';
src: url('OpenSans-ExtraBold-webfont.eot');
src: url('OpenSans-ExtraBold-webfont.svg#OpenSansExtraBold') format('svg'),
url('OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-ExtraBold-webfont.woff') format('woff'),
url('OpenSans-ExtraBold-webfont.ttf') format('truetype');
font-weight: bolder;
font-style: normal;
}
209 changes: 209 additions & 0 deletions gdg.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -38,7 +38,7 @@
</script>
</head>
<body>
<h1 class="gdg-logo"><b>GDG</b> Kyiv-Center</h1>
<h1 class="gdg-logo"><img src="gdg.svg"><span><b>GDG</b> Kyiv-Center</span></h1>
<div id="navigation">
<span class="nav-item about"><span>About</span></span>
<span class="nav-item past"><span><span class="counter">?</span>&nbsp;past&nbsp;events</span></span>
Expand Down
13 changes: 12 additions & 1 deletion style.css
Expand Up @@ -8,8 +8,19 @@ body {
margin: 20px 0px 0px 20px;
padding: 0px;
}
.gdg-logo > span {
position: relative;
left: 20px;
top: -20px;
}
.gdg-logo > span > b {
font-weight: bolder;
}
.gdg-logo > img {
height: 100px;
}
#navigation {
margin: 20px 0px 10px 0px;
margin: 0px 0px 10px 0px;
padding: 0px 0px 0px 30px;
background: #f0f0f0;
font-size: 250%;
Expand Down
13 changes: 12 additions & 1 deletion style.styl
Expand Up @@ -13,14 +13,25 @@ body
margin 20px 0px 0px 20px
padding 0px

> span
position relative
left 20px
top -20px

> b
font-weight bolder

> img
height 100px

#navigation
$font-size-normal = 150%
$font-size-current = 250%
$text-color-normal = #aaa
$text-color-current = black
$transition = font-size 250ms ease

margin 20px 0px 10px 0px
margin 0px 0px 10px 0px
padding 0px 0px 0px 30px
background $default-bg
font-size $font-size-current
Expand Down

0 comments on commit e85ecb8

Please sign in to comment.