SONEX Documentation

Eye-catching portfolio focused on showcase your talents and skills.

Get Started

CSS

All CSS files located in css directory. Sonex has 5 CSS files:

  1. bootstrap.min.css
  2. fontello.min.css
  3. magnific-popup.min.css
  4. animsition.min.css
  5. style.css

bootstrap.min.css

File with styles of Boostrap 3 Framework. It contains only grid system, other Boostrap styles not included. See more information on getbootstrap.com.

fontello.min.css

File with styles of icon webfont. It's custom icon webfont which contains such icons:

  1. icon-mail-alt
  2. icon-eye
  3. icon-facebook
  4. icon-vkontakte
  5. icon-twitter
  6. icon-pinterest-circled
  7. icon-gplus

As you can see, each icon class has prefix icon-. To insert icon you should add class like icon-eye to any selector, but I recommend use i selector for this. Visit fontello.comfor more information.

example
<i class="icon-eye"></i>

magnific-popup.min.css

File with styles of lightbox which used in gallery of project page. See official documentation on dimsemenov.com/plugins/magnific-popup/.

animsition.min.css

File with styles of plugin which responsible for smooth transition between pages. See more information on git.blivesta.com/animsition/.

style.css

This is a main CSS file with 12 different sections:

  1. Google Fonts Import
  2. Common Styles
  3. Sidebar
  4. Main
  5. Works Grid
  6. Index Page
  7. Project Page
  8. About Page
  9. Blog Page
  10. Blog Single
  11. Contact Page
  12. Responsive

Section with responsive layout has different media quires. All media queries arranged in order of decay. If you want to add your media query, add it so as not to upset the order. To add you media query use the syntax:

media query example
@media (max-width: Npx) {
	/* Your Code Here */
}

Where N means number of pixels of screen.

If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!