diff --git a/www/default.html b/www/default.html new file mode 100644 index 0000000..b630321 --- /dev/null +++ b/www/default.html @@ -0,0 +1,128 @@ + + + + + + Scienta + + + + + + + + +
+ + + + + + +

+
+ Scienta
+ +
+ + + + + +

 

+

 

+ +

We are your IT partner, from idea to
+ working solution

+

We solve complex tasks by conceptual
+ and creative thinking

+

We attract and develop the best talent

+

We base our decisions on evidence – not
+ myth, superstition, or fashion

+

 

+

Making IT your winning asset

+

 

 

+

 

+

 

+

 

+

 

+

 

+ + + + + + + + + + + + + +
icon talkpost@scienta.no
  
icon where
+ + + + + diff --git a/www/images/icon_dialog.png b/www/images/icon_dialog.png new file mode 100644 index 0000000..ae35429 Binary files /dev/null and b/www/images/icon_dialog.png differ diff --git a/www/images/icon_pin.png b/www/images/icon_pin.png new file mode 100644 index 0000000..d02af94 Binary files /dev/null and b/www/images/icon_pin.png differ diff --git a/www/images/logo_scienta.png b/www/images/logo_scienta.png new file mode 100644 index 0000000..941a9ee Binary files /dev/null and b/www/images/logo_scienta.png differ diff --git a/www/images/text_againstthegods.png b/www/images/text_againstthegods.png new file mode 100644 index 0000000..2077465 Binary files /dev/null and b/www/images/text_againstthegods.png differ diff --git a/www/images/text_arelightson.png b/www/images/text_arelightson.png new file mode 100644 index 0000000..1b1d554 Binary files /dev/null and b/www/images/text_arelightson.png differ diff --git a/www/images/text_systemsthinking.png b/www/images/text_systemsthinking.png new file mode 100644 index 0000000..37773dd Binary files /dev/null and b/www/images/text_systemsthinking.png differ diff --git a/www/images/trans.gif b/www/images/trans.gif new file mode 100644 index 0000000..d0b3242 Binary files /dev/null and b/www/images/trans.gif differ diff --git a/www/randomscript.js b/www/randomscript.js new file mode 100644 index 0000000..28102d9 --- /dev/null +++ b/www/randomscript.js @@ -0,0 +1,27 @@ +function randomize() { + // DATA + var colors = [ '#F7A46B', '#EF7273', '#C272A1', '#7F9DCB', '#75CAE7', '#61B9BC', '#5BAA81', '#91CD93', '#D2DD66' ]; + var images = [ 'againstthegods', 'arelightson', 'systemsthinking' ]; + + // GOSUBS + function random(arr) { + var randomIndex = Math.floor(Math.random() * arr.length); + return arr[randomIndex]; + } + function image(name) { + return 'images/text_' + name + '.png'; + } + + // PROGRAM + var randomImageName = random(images); + var randomImage = image(randomImageName); + $('#random-image').attr('src', randomImage); + $('#random-image').attr('alt', randomImageName); + + var randomColor = random(colors); + $('#random-color-bg').attr('bgcolor', randomColor); + $('.heading').css('color', randomColor); +} + +// RUN +randomize();