Show DevBest IntactDev: Coming Soon

IntactDev

Member
Nov 22, 2012
399
71
Here is just one of the first little templates I've ever made, with the help from a few members. Can you make suggestions, and rate it please? Thanks.

Check it out here:

CREDITS:

IntactDev --> 80% [Coding & Designing]
--> 10% [Critiquing the design]
--> 10% [Critiquing the design]
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
I like the background and the design as a whole.

How about adding some effects when hovering over the social icons and "notify" button? Also, maybe some jQuery when you focus on the input field for the url?
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
I like it, it's pretty nice.

But you could've saved yourself a few lines of code in your CSS. At the minute you have:

Code:
.social-facebook {
	background: url(../images/social/facebook.png) no-repeat;
	width: 64px;
	height: 64px;
	float: left;

	padding-right: 150px;
}

.social-twitter {
	background: url(../images/social/twitter.png) no-repeat;
	width: 64px;
	height: 64px;
	float: left;

	padding-right: 150px;
}

.social-youtube {
	background: url(../images/social/youtube.png) no-repeat;
	width: 64px;
	height: 64px;
	float: right;
}

What you could do is:

Code:
.social-icon {
    width: 64px;
    height: 64px;
    float: left;
    padding-right: 150px;
}

.social-icon:last-child {
    padding-right: 0;
}

.social-facebook {
    background: url(../images/social/facebook.png) no-repeat;
}

.social-twitter {
    background: url(../images/social/twitter.png) no-repeat;
}

.social-youtube {
    background: url(../images/social/youtube.png) no-repeat;
}

And then in your HTML, do this:

HTML:
<div class="social-icons">
    <a href="http://twitter.com/IntactDev">
        <div class="social-icon social-twitter"></div>
    </a>
    <a href="http://facebook.com/IntactDev">
        <div class="social-icon social-facebook"></div>
    </a>
    <a href="http://youtube.com/IntactDev">
        <div class="social-icon social-youtube"></div>
    </a>
</div>

It's more professional and saves code in your CSS. Hope it helps, if you decide to go with it. :)
 

Predict

Active Member
Jun 27, 2011
126
63
I don't like the domain, sounds like some paki made it, .nu
You need to cross-browser your CSS

nmddtk.png
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
yBjHpyy.png


This is how it looks in IE 10. You should do a default
Code:
background: #hex;
so browsers that don't support linear-gradient can at-least have a background.
 

RastaLulz

fight teh power
Staff member
May 3, 2010
3,926
3,921
Personally not a fan, way too much green - hurts my eyes.

I'd recommend going with a more neutral color, like blue. I'd also recommend making the social network icons the same width as the email input bar to add some symmetry.
 

Bleep

PHP - HTML - CSS - JAVA ✔
Oct 19, 2012
266
46
Ah, I like the font. Quite similar to the one uses? :p What font is it?

I think the site's pretty good.
 

Users who are viewing this thread

Top