Skip to content

Commit

Permalink
Merge branch 'master' into readable-without-grid
Browse files Browse the repository at this point in the history
  • Loading branch information
ferni committed Jul 23, 2017
2 parents 3bf91cd + a8fa953 commit 98c977a
Show file tree
Hide file tree
Showing 37 changed files with 81 additions and 23 deletions.
Binary file removed assets/fonts/Futura.ttc
Binary file not shown.
Binary file removed assets/img/team/Andy-Milenius.jpeg
Binary file not shown.
Binary file added assets/img/team/Andy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Daniel.jpeg
Binary file not shown.
Binary file added assets/img/team/Daniel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Ferni.jpeg
Binary file not shown.
Binary file added assets/img/team/Ferni.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/team/Gonzalo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/James.jpeg
Binary file not shown.
Binary file added assets/img/team/James.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Kenny.jpg
Binary file not shown.
Binary file added assets/img/team/Kenny.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Mariano.jpeg
Binary file not shown.
Binary file added assets/img/team/Mariano.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/team/Matt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Mikael.jpeg
Binary file not shown.
Binary file added assets/img/team/Mikael.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/team/Nik.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/team/Nikolai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/team/Pawel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Paweł-Grajewski.jpg
Binary file not shown.
Binary file added assets/img/team/Rain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/team/Robert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Rune-Christensen.png
Binary file not shown.
Binary file added assets/img/team/Rune.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/team/Ryan.jpeg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/team/Thomas.jpeg
Diff not rendered.
Binary file added assets/img/team/Thomas.png
Binary file modified assets/img/team/matt.png
Binary file removed assets/img/team/nikolai.jpeg
Diff not rendered.
Binary file removed assets/img/team/r001.jpeg
Diff not rendered.
Binary file modified assets/img/team/rain.png
41 changes: 36 additions & 5 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,32 @@ header nav a {
color: white;
}

#subscribe input {
#subscribe .email:focus {
outline: none;
border-bottom: 1px solid #FFFFFF;

}

#subscribe input:focus::-webkit-input-placeholder {
color: #A8A8A8;
}

/* Firefox < 19 */
#subscribe input:focus:-moz-placeholder {
color: #A8A8A8;
}

/* Firefox > 19 */
#subscribe input:focus::-moz-placeholder {
color: #A8A8A8;
}

/* Internet Explorer 10 */
#subscribe input:focus:-ms-input-placeholder {
color: #A8A8A8;
}

#subscribe .email{
background: none;
border: 0;
border-bottom: 1px solid #979797;
Expand All @@ -402,12 +427,18 @@ header nav a {
background-color: #1BC4A6;
font-family: Futura;
font-size: 22px;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
border-width: 0;
}

#subscribe .button:focus {
outline: none;
background-color: #4F6A7B;
}





#subscribe input, #subscribe .button {
margin-top: 40px;
}
Expand Down
15 changes: 13 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,19 @@
<div id="footer-grid">
<div id="subscribe" class="dark">
<span class="big-text">Discover + Connect</span>
<input type="email" placeholder="Email address" disabled/>
<div class="button">Subscribe</div>
<div id="mc_embed_signup">
<form action="//makerdao.us16.list-manage.com/subscribe/post?u=f717b15a4a763e79ee910dbe6&amp;id=86313139e4" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">

<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_f717b15a4a763e79ee910dbe6_86313139e4" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe" name="subscribe" class="button">

</div>
</form>
</div>

</div>
<div id="dai-foundation-text" class="dark">
<p>
Expand Down
6 changes: 6 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,14 @@ $(document).ready(function () {
$("#logo").attr("src", "assets/img/MKR-logo-rounded.png");
}


// Old browser warning
$('.close-warning-btn').click(function() {
$('.browserupgrade-grid').hide();
})

$("#subscribe .button").click(function() {
// Removes focus of the button.
$(this).blur();
});
});
28 changes: 14 additions & 14 deletions js/team.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,47 +3,47 @@ $(function () {
{
name: 'Rune Christensen',
role: 'Founder',
pic: 'Rune-Christensen.png'
pic: 'Rune.png'
},
{
name: 'Andy Milenius',
role: 'Technical Project Manager',
pic: 'Andy-Milenius.jpeg'
pic: 'Andy.png'
},
{
name: 'Nikolai Mushegian',
role: 'Lead Architect',
pic: 'nikolai.jpeg'
pic: 'Nikolai.png'
},
{
name: 'Kenny Rowe',
role: 'Head of Operations',
pic: 'Kenny.jpg'
pic: 'Kenny.png'
},
{
name: 'Matt Richards',
role: 'Head of Marketing',
pic: 'matt.png'
pic: 'Matt.png'
},
{
name: 'James Reidy',
role: 'IT Lead',
pic: 'James.jpeg'
pic: 'James.png'
},
{
name: 'Daniel Brockman',
role: 'Software Engineer',
pic: 'Daniel.jpeg'
pic: 'Daniel.png'
},
{
name: 'Mariano Conti',
role: 'Software Engineer',
pic: 'Mariano.jpeg'
pic: 'Mariano.png'
},
{
name: 'Fernando Tiberti',
role: 'Software Engineer',
pic: 'Ferni.jpeg'
pic: 'Ferni.png'
},
{
name: 'Gonzalo Balabasquer',
Expand All @@ -58,7 +58,7 @@ $(function () {
{
name: 'Michael Brockman',
role: 'Software Engineer',
pic: 'Mikael.jpeg'
pic: 'Mikael.png'
},
{
name: 'Ryan Casey',
Expand All @@ -68,22 +68,22 @@ $(function () {
{
name: 'Rain Beam',
role: 'Software Engineer',
pic: 'rain.png'
pic: 'Rain.png'
},
{
name: 'Paweł Grajewski',
role: 'Software Engineer',
pic: 'Paweł-Grajewski.jpg'
pic: 'Pawel.png'
},
{
name: 'Robert Horvath',
role: 'Software Engineer',
pic: 'r001.jpeg'
pic: 'Robert.png'
},
{
name: 'Thomas Pulber',
role: 'Software Engineer',
pic: 'Thomas.jpeg'
pic: 'Thomas.png'
}
];

Expand Down
14 changes: 12 additions & 2 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,18 @@
<div id="footer-grid">
<div id="subscribe" class="dark">
<span class="big-text">Discover + Connect</span>
<input type="email" placeholder="Email address" disabled/>
<div class="button">Subscribe</div>
<div id="mc_embed_signup">
<form action="//makerdao.us16.list-manage.com/subscribe/post?u=f717b15a4a763e79ee910dbe6&amp;id=86313139e4" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">

<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_f717b15a4a763e79ee910dbe6_86313139e4" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe" name="subscribe" class="button">

</div>
</form>
</div>
</div>
<div id="dai-foundation-text" class="dark">
<p>
Expand Down

0 comments on commit 98c977a

Please sign in to comment.