Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
03385ab
Add universal base.css and remove conflicting parts from site.css
Jan 29, 2015
5a321db
FIXgit add . Move @import section to base.css as first in load order.
Jan 29, 2015
0702eec
.somethings no longer appear fully opaque before beginning fade in.
Jan 30, 2015
95cbfc3
remove superfluous .somethingSequences and increase spacing of #pitch…
Jan 30, 2015
7f01981
Last direct commit! Restores #links ul we'd hidden in production vers…
Jan 30, 2015
f53ba13
add scaled versions of seeing_eye.png
Jan 30, 2015
05ca960
Basic <picture> <source>ing.
Jan 30, 2015
479d8e6
Beginning of cycling icons.
Feb 1, 2015
ad1c6e7
#see-do as flat horizontal animated slide out to left.
Feb 3, 2015
6f68584
Merge pull request #1 from ProjectMakeIt/see-do-redesign
mrmakeit Feb 3, 2015
535591e
New structure of landing page sections with papery layering.
Feb 4, 2015
e062b56
Merge pull request #2 from ProjectMakeIt/responsive-overhaul-1
mrmakeit Feb 5, 2015
11f0dc7
Removed #dashboard rules in base.css
Feb 5, 2015
17d9f0b
Merge pull request #3 from ProjectMakeIt/fix_dashboard_contamination
mrmakeit Feb 5, 2015
7668874
Decimal percentages tighten transitions. Opacity fade-in conceals.
Feb 5, 2015
49d342f
Merge pull request #4 from ProjectMakeIt/enhance_fiveFrame_transitions
mrmakeit Feb 6, 2015
8b29e48
Mobile-first rework of @media rules.
Feb 6, 2015
412766a
Tiny tweak to two-line logo.
Feb 6, 2015
1ff1027
Restructure #consult section.
Feb 9, 2015
ab67803
Media breakpoint refinement
Feb 9, 2015
83222e8
Merge pull request #5 from ProjectMakeIt/responsive-overhaul-2
mrmakeit Feb 9, 2015
fecb5cb
Hide ul of links to pages that aren't ready yet.
Feb 9, 2015
02f26e3
Better upscaling of #landing-page with @media rules.
Feb 10, 2015
637eb41
Additional tweaks
Feb 10, 2015
bb8a2c4
Less ugly #links section.
Feb 10, 2015
7be6fba
Text shadow no longer needed on #links a
Feb 10, 2015
7fcb4c0
text-shadow: none; on #links a
Feb 10, 2015
6fbcd1e
Merge pull request #9 from ProjectMakeIt/action_rework
mrmakeit Feb 10, 2015
eab1827
Completing merge
Feb 10, 2015
43ab266
Merge pull request #8 from ProjectMakeIt/responsive-overhaul-3
mrmakeit Feb 10, 2015
1d2c974
Merged updated staging into consult_rework for clean merge.
Feb 10, 2015
572dbac
Merge pull request #6 from ProjectMakeIt/consult_rework
mrmakeit Feb 10, 2015
9a91800
Show only the new contact buttons.
Feb 10, 2015
5444618
Merge pull request #7 from ProjectMakeIt/hide-links-again
mrmakeit Feb 10, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions css/animate.css
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,48 @@ Copyright (c) 2014 Daniel Eden
animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftDelayed {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
50% {
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftDelayed {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
50% {
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftDelayed {
-webkit-animation-name: fadeInLeftDelayed;
-moz-animation-name: fadeInLeftDelayed;
-o-animation-name: fadeInLeftDelayed;
animation-name: fadeInLeftDelayed;

-webkit-animation-duration: 2.5s;
-moz-animation-duration: 2.5s;
-o-animation-duration: 2.5s;
animation-duration: 2.5s;
}

@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
Expand Down
Loading