This repository has been archived on 2020-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
sp4ke.github.com/less/variables.less

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-01-15 15:19:31 +00:00
@import url('http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@import url('http://fonts.googleapis.com/css?family=Gentium+Book+Basic');
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900');
2013-03-01 17:37:49 +00:00
@headingFont: "Open Sans";
@titleFont: "Gentium Book Basic";
2013-01-15 15:19:31 +00:00
@orange: #ef4723;
@darkGrey: #222;
2013-03-01 17:37:49 +00:00
@white: rgb(252, 252, 252);
2013-01-15 15:19:31 +00:00
2013-03-01 17:37:49 +00:00
@dockIconColor: rgb(224,224,224);
@profilColor: rgb(81, 250, 128);
@projectsColor: rgb(87, 221, 247);
@blogColor: rgb(255, 140, 150);
@contactColor: rgb(249, 255, 107);
@font-face {
font-family: 'junctionregularRegular';
src: url('Junction-webfont.eot');
src: url('Junction-webfont.eot?#iefix') format('embedded-opentype'),
url('Junction-webfont.woff') format('woff'),
url('Junction-webfont.ttf') format('truetype'),
url('Junction-webfont.svg#junctionregularRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@textFontSize: 18px;
@textColor: rgb(167, 167, 167);
// Animation delay
.animation-delay(@delay: 500ms) {
-webkit-animation-delay : @delay;
-moz-animation-delay : @delay;
animation-delay : @delay;
}
2013-01-15 15:19:31 +00:00