Test version
@@ -27,39 +27,39 @@ class Kernel extends ConsoleKernel
|
|||||||
*/
|
*/
|
||||||
protected function schedule(Schedule $schedule)
|
protected function schedule(Schedule $schedule)
|
||||||
{
|
{
|
||||||
$this->API_URL = env('API_URL', 'https://api.nhgooi.nl/');
|
// $this->API_URL = env('API_URL', 'https://api.nhgooi.nl/');
|
||||||
|
//
|
||||||
// Update latest news (3 items)
|
// // Update latest news (3 items)
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('laatste_nieuws.json', file_get_contents($this->API_URL . 'nieuws/overzicht?pagina=1&aantal=3'));
|
// Storage::disk('local')->put('laatste_nieuws.json', file_get_contents($this->API_URL . 'nieuws/overzicht?pagina=1&aantal=3'));
|
||||||
Storage::disk('local')->put('populair_nieuws.json', file_get_contents($this->API_URL . 'nieuws/populair'));
|
// Storage::disk('local')->put('populair_nieuws.json', file_get_contents($this->API_URL . 'nieuws/populair'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
|
//
|
||||||
// Update now / later
|
// // Update now / later
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('nu_straks.json', file_get_contents($this->API_URL . 'programma/schema/nustraks'));
|
// Storage::disk('local')->put('nu_straks.json', file_get_contents($this->API_URL . 'programma/schema/nustraks'));
|
||||||
Storage::disk('local')->put('zojuist.json', file_get_contents($this->API_URL . 'programma/schema/recent'));
|
// Storage::disk('local')->put('zojuist.json', file_get_contents($this->API_URL . 'programma/schema/recent'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
|
//
|
||||||
// Update latest podcasts (6 items)
|
// // Update latest podcasts (6 items)
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('laatste_podcasts.json', file_get_contents($this->API_URL . 'podcast/overzicht?pagina=1&aantal=6'));
|
// Storage::disk('local')->put('laatste_podcasts.json', file_get_contents($this->API_URL . 'podcast/overzicht?pagina=1&aantal=6'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
|
//
|
||||||
// Update calendar items
|
// // Update calendar items
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('regioagenda.json', file_get_contents($this->API_URL . 'agenda/overzicht'));
|
// Storage::disk('local')->put('regioagenda.json', file_get_contents($this->API_URL . 'agenda/overzicht'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
|
//
|
||||||
// Update blogs
|
// // Update blogs
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('blogs.json', file_get_contents($this->API_URL . 'blog/overzicht'));
|
// Storage::disk('local')->put('blogs.json', file_get_contents($this->API_URL . 'blog/overzicht'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
|
//
|
||||||
// Update featured images
|
// // Update featured images
|
||||||
$schedule->call(function() {
|
// $schedule->call(function() {
|
||||||
Storage::disk('local')->put('beelden.json', file_get_contents($this->API_URL . 'beelden/overzicht'));
|
// Storage::disk('local')->put('beelden.json', file_get_contents($this->API_URL . 'beelden/overzicht'));
|
||||||
})->everyMinute();
|
// })->everyMinute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -108,7 +108,19 @@ class Controller extends BaseController
|
|||||||
|
|
||||||
protected function API($url)
|
protected function API($url)
|
||||||
{
|
{
|
||||||
return json_decode(file_get_contents($this->API_URL . $url));
|
// if (strpos($url, 'nieuws/overzicht') !== false) {
|
||||||
|
// return json_decode(file_get_contents(__DIR__ . '/../../../storage/app/laatste_nieuws.json'));
|
||||||
|
// }
|
||||||
|
// return [];
|
||||||
|
|
||||||
|
$arrContextOptions= [
|
||||||
|
'ssl' => [
|
||||||
|
"verify_peer"=>false,
|
||||||
|
"verify_peer_name"=>false,
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
return json_decode(file_get_contents($this->API_URL . $url, false, stream_context_create($arrContextOptions)));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static function JsonToDateTime($obj)
|
protected static function JsonToDateTime($obj)
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
|
||||||
|
class CreatePagestatsTable extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::create('pagestats', function (Blueprint $table) {
|
||||||
|
$table->string('type');
|
||||||
|
$table->integer('item_id');
|
||||||
|
$table->string('visitor_ip');
|
||||||
|
$table->string('session');
|
||||||
|
$table->text('referer')->nullable();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('pagestats');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,3 +8,15 @@ services:
|
|||||||
- 8443:443
|
- 8443:443
|
||||||
volumes:
|
volumes:
|
||||||
- .:/var/www/html
|
- .:/var/www/html
|
||||||
|
- ./srv:/srv
|
||||||
|
db:
|
||||||
|
image: mysql:5.5
|
||||||
|
ports:
|
||||||
|
- "3306:3306"
|
||||||
|
expose:
|
||||||
|
- "3306"
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: development-password
|
||||||
|
MYSQL_DATABASE: forge
|
||||||
|
MYSQL_USER: forge
|
||||||
|
MYSQL_PASSWORD: secret
|
||||||
|
|||||||
31567
package-lock.json
generated
Normal file
@@ -7,15 +7,17 @@
|
|||||||
"watch-poll": "npm run watch -- --watch-poll",
|
"watch-poll": "npm run watch -- --watch-poll",
|
||||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||||
"prod": "npm run production",
|
"prod": "npm run production",
|
||||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||||
|
"sass-watch": "sass --watch resources/assets/sass:public/css"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"axios": "^0.16.2",
|
"axios": "^0.16.2",
|
||||||
"bootstrap-sass": "^3.3.7",
|
"bootstrap": "^5.3.3",
|
||||||
"cross-env": "^5.0.1",
|
"cross-env": "^5.0.1",
|
||||||
"jquery": "^3.1.1",
|
"jquery": "^3.1.1",
|
||||||
"laravel-mix": "^1.0",
|
"laravel-mix": "^1.0",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
|
"sass": "^1.71.1",
|
||||||
"vue": "^2.1.10"
|
"vue": "^2.1.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
3
public/css/app.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||||
|
|
||||||
|
/*# sourceMappingURL=app.css.map */
|
||||||
1
public/css/app.css.map
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sourceRoot":"","sources":["../../resources/assets/sass/app.scss"],"names":[],"mappings":"AAEQ","file":"app.css"}
|
||||||
4085
public/css/bootstrap-grid.css
vendored
Normal file
1
public/css/bootstrap-grid.css.map
Normal file
6
public/css/bootstrap-grid.min.css
vendored
Normal file
1
public/css/bootstrap-grid.min.css.map
Normal file
5
public/css/bootstrap.min.css
vendored
4
public/css/font-awesome.min.css
vendored
1
public/css/noordholland.min.css
vendored
|
Before Width: | Height: | Size: 606 B After Width: | Height: | Size: 606 B |
|
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 417 B |
5
public/css/old/bootstrap.min.css
vendored
Normal file
|
Before Width: | Height: | Size: 951 B After Width: | Height: | Size: 951 B |
|
Before Width: | Height: | Size: 637 B After Width: | Height: | Size: 637 B |
@@ -237,456 +237,456 @@ textarea.hint,
|
|||||||
}
|
}
|
||||||
.divider.subheader_arrow
|
.divider.subheader_arrow
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/subheader_arrow.png");
|
background-image: url("../../images/icons/other/dark_bg/subheader_arrow.png");
|
||||||
}
|
}
|
||||||
.pagination li.left a
|
.pagination li.left a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/pagination_arrow_left.png");
|
background-image: url("../../images/icons/navigation/dark_bg/pagination_arrow_left.png");
|
||||||
}
|
}
|
||||||
.pagination li.right a
|
.pagination li.right a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/pagination_arrow_right.png");
|
background-image: url("../../images/icons/navigation/dark_bg/pagination_arrow_right.png");
|
||||||
}
|
}
|
||||||
blockquote
|
blockquote
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/quote_content.png");
|
background-image: url("../../images/icons/other/dark_bg/quote_content.png");
|
||||||
}
|
}
|
||||||
#comments_list .children .comment .parent_arrow
|
#comments_list .children .comment .parent_arrow
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/comment_reply.png");
|
background-image: url("../../images/icons/other/dark_bg/comment_reply.png");
|
||||||
}
|
}
|
||||||
.bullet.style_1
|
.bullet.style_1
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/bullet_style_1.png");
|
background-image: url("../../images/icons/other/dark_bg/bullet_style_1.png");
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
}
|
}
|
||||||
.bullet.style_2
|
.bullet.style_2
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/bullet_style_2.png");
|
background-image: url("../../images/icons/other/dark_bg/bullet_style_2.png");
|
||||||
}
|
}
|
||||||
.bullet.style_3
|
.bullet.style_3
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/bullet_style_3.png");
|
background-image: url("../../images/icons/other/dark_bg/bullet_style_3.png");
|
||||||
}
|
}
|
||||||
.bullet.style_4
|
.bullet.style_4
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/bullet_style_4.png");
|
background-image: url("../../images/icons/other/dark_bg/bullet_style_4.png");
|
||||||
}
|
}
|
||||||
.item_content .not_found
|
.item_content .not_found
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/404.png");
|
background-image: url("../../images/icons/other/dark_bg/404.png");
|
||||||
}
|
}
|
||||||
.app
|
.app
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/app.png");
|
background-image: url("../../images/icons/features/dark_bg/app.png");
|
||||||
}
|
}
|
||||||
.calendar
|
.calendar
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/calendar.png");
|
background-image: url("../../images/icons/features/dark_bg/calendar.png");
|
||||||
}
|
}
|
||||||
.chart
|
.chart
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/chart.png");
|
background-image: url("../../images/icons/features/dark_bg/chart.png");
|
||||||
}
|
}
|
||||||
.chat
|
.chat
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/chat.png");
|
background-image: url("../../images/icons/features/dark_bg/chat.png");
|
||||||
}
|
}
|
||||||
.clock
|
.clock
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/clock.png");
|
background-image: url("../../images/icons/features/dark_bg/clock.png");
|
||||||
}
|
}
|
||||||
.database
|
.database
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/database.png");
|
background-image: url("../../images/icons/features/dark_bg/database.png");
|
||||||
}
|
}
|
||||||
.document
|
.document
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/document.png");
|
background-image: url("../../images/icons/features/dark_bg/document.png");
|
||||||
}
|
}
|
||||||
.envelope
|
.envelope
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/envelope.png");
|
background-image: url("../../images/icons/features/dark_bg/envelope.png");
|
||||||
}
|
}
|
||||||
.faq
|
.faq
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/faq.png");
|
background-image: url("../../images/icons/features/dark_bg/faq.png");
|
||||||
}
|
}
|
||||||
.graph
|
.graph
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/graph.png");
|
background-image: url("../../images/icons/features/dark_bg/graph.png");
|
||||||
}
|
}
|
||||||
.image
|
.image
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/image.png");
|
background-image: url("../../images/icons/features/dark_bg/image.png");
|
||||||
}
|
}
|
||||||
.laptop
|
.laptop
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/laptop.png");
|
background-image: url("../../images/icons/features/dark_bg/laptop.png");
|
||||||
}
|
}
|
||||||
.magnifier
|
.magnifier
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/magnifier.png");
|
background-image: url("../../images/icons/features/dark_bg/magnifier.png");
|
||||||
}
|
}
|
||||||
.features_icon.mobile
|
.features_icon.mobile
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/mobile.png");
|
background-image: url("../../images/icons/features/dark_bg/mobile.png");
|
||||||
}
|
}
|
||||||
.pin
|
.pin
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/pin.png");
|
background-image: url("../../images/icons/features/dark_bg/pin.png");
|
||||||
}
|
}
|
||||||
.printer
|
.printer
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/printer.png");
|
background-image: url("../../images/icons/features/dark_bg/printer.png");
|
||||||
}
|
}
|
||||||
.quote
|
.quote
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/quote.png");
|
background-image: url("../../images/icons/features/dark_bg/quote.png");
|
||||||
}
|
}
|
||||||
.screen
|
.screen
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/screen.png");
|
background-image: url("../../images/icons/features/dark_bg/screen.png");
|
||||||
}
|
}
|
||||||
.speaker
|
.speaker
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/speaker.png");
|
background-image: url("../../images/icons/features/dark_bg/speaker.png");
|
||||||
}
|
}
|
||||||
.video
|
.video
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/dark_bg/video.png");
|
background-image: url("../../images/icons/features/dark_bg/video.png");
|
||||||
}
|
}
|
||||||
li.detail.category
|
li.detail.category
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_category.png");
|
background-image: url("../../images/icons/other/dark_bg/post_category.png");
|
||||||
}
|
}
|
||||||
.detail.date
|
.detail.date
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_date.png");
|
background-image: url("../../images/icons/other/dark_bg/post_date.png");
|
||||||
}
|
}
|
||||||
.detail.author
|
.detail.author
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_author.png");
|
background-image: url("../../images/icons/other/dark_bg/post_author.png");
|
||||||
}
|
}
|
||||||
.detail.views
|
.detail.views
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_views.png");
|
background-image: url("../../images/icons/other/dark_bg/post_views.png");
|
||||||
}
|
}
|
||||||
.detail.comments
|
.detail.comments
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_comments.png");
|
background-image: url("../../images/icons/other/dark_bg/post_comments.png");
|
||||||
}
|
}
|
||||||
.taxonomies.tags
|
.taxonomies.tags
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_footer_tags.png");
|
background-image: url("../../images/icons/other/dark_bg/post_footer_tags.png");
|
||||||
}
|
}
|
||||||
.taxonomies.categories
|
.taxonomies.categories
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/post_footer_category.png");
|
background-image: url("../../images/icons/other/dark_bg/post_footer_category.png");
|
||||||
}
|
}
|
||||||
.behance
|
.behance
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/behance.png");
|
background-image: url("../../images/icons/social/dark_bg/behance.png");
|
||||||
}
|
}
|
||||||
.bing
|
.bing
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/bing.png");
|
background-image: url("../../images/icons/social/dark_bg/bing.png");
|
||||||
}
|
}
|
||||||
.blogger
|
.blogger
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/blogger.png");
|
background-image: url("../../images/icons/social/dark_bg/blogger.png");
|
||||||
}
|
}
|
||||||
.deezer
|
.deezer
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/deezer.png");
|
background-image: url("../../images/icons/social/dark_bg/deezer.png");
|
||||||
}
|
}
|
||||||
.designfloat
|
.designfloat
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/designfloat.png");
|
background-image: url("../../images/icons/social/dark_bg/designfloat.png");
|
||||||
}
|
}
|
||||||
.deviantart
|
.deviantart
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/deviantart.png");
|
background-image: url("../../images/icons/social/dark_bg/deviantart.png");
|
||||||
}
|
}
|
||||||
.digg
|
.digg
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/digg.png");
|
background-image: url("../../images/icons/social/dark_bg/digg.png");
|
||||||
}
|
}
|
||||||
.digg
|
.digg
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/digg.png");
|
background-image: url("../../images/icons/social/dark_bg/digg.png");
|
||||||
}
|
}
|
||||||
.dribbble
|
.dribbble
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/dribbble.png");
|
background-image: url("../../images/icons/social/dark_bg/dribbble.png");
|
||||||
}
|
}
|
||||||
.envato
|
.envato
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/envato.png");
|
background-image: url("../../images/icons/social/dark_bg/envato.png");
|
||||||
}
|
}
|
||||||
.facebook
|
.facebook
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/facebook.png");
|
background-image: url("../../images/icons/social/dark_bg/facebook.png");
|
||||||
}
|
}
|
||||||
.flickr
|
.flickr
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/flickr.png");
|
background-image: url("../../images/icons/social/dark_bg/flickr.png");
|
||||||
}
|
}
|
||||||
.form
|
.form
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/form.png");
|
background-image: url("../../images/icons/social/dark_bg/form.png");
|
||||||
}
|
}
|
||||||
.forrst
|
.forrst
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/forrst.png");
|
background-image: url("../../images/icons/social/dark_bg/forrst.png");
|
||||||
}
|
}
|
||||||
.foursquare
|
.foursquare
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/foursquare.png");
|
background-image: url("../../images/icons/social/dark_bg/foursquare.png");
|
||||||
}
|
}
|
||||||
.friendfeed
|
.friendfeed
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/friendfeed.png");
|
background-image: url("../../images/icons/social/dark_bg/friendfeed.png");
|
||||||
}
|
}
|
||||||
.googleplus
|
.googleplus
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/googleplus.png");
|
background-image: url("../../images/icons/social/dark_bg/googleplus.png");
|
||||||
}
|
}
|
||||||
.instagram
|
.instagram
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/instagram.png");
|
background-image: url("../../images/icons/social/dark_bg/instagram.png");
|
||||||
}
|
}
|
||||||
.linkedin
|
.linkedin
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/linkedin.png");
|
background-image: url("../../images/icons/social/dark_bg/linkedin.png");
|
||||||
}
|
}
|
||||||
.mail
|
.mail
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/mail.png");
|
background-image: url("../../images/icons/social/dark_bg/mail.png");
|
||||||
}
|
}
|
||||||
.mobile
|
.mobile
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/mobile.png");
|
background-image: url("../../images/icons/social/dark_bg/mobile.png");
|
||||||
}
|
}
|
||||||
.myspace
|
.myspace
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/myspace.png");
|
background-image: url("../../images/icons/social/dark_bg/myspace.png");
|
||||||
}
|
}
|
||||||
.picasa
|
.picasa
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/picasa.png");
|
background-image: url("../../images/icons/social/dark_bg/picasa.png");
|
||||||
}
|
}
|
||||||
.pinterest
|
.pinterest
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/pinterest.png");
|
background-image: url("../../images/icons/social/dark_bg/pinterest.png");
|
||||||
}
|
}
|
||||||
.reddit
|
.reddit
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/reddit.png");
|
background-image: url("../../images/icons/social/dark_bg/reddit.png");
|
||||||
}
|
}
|
||||||
.rss
|
.rss
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/rss.png");
|
background-image: url("../../images/icons/social/dark_bg/rss.png");
|
||||||
}
|
}
|
||||||
.skype
|
.skype
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/skype.png");
|
background-image: url("../../images/icons/social/dark_bg/skype.png");
|
||||||
}
|
}
|
||||||
.soundcloud
|
.soundcloud
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/soundcloud.png");
|
background-image: url("../../images/icons/social/dark_bg/soundcloud.png");
|
||||||
}
|
}
|
||||||
.spotify
|
.spotify
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/spotify.png");
|
background-image: url("../../images/icons/social/dark_bg/spotify.png");
|
||||||
}
|
}
|
||||||
.stumbleupon
|
.stumbleupon
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/stumbleupon.png");
|
background-image: url("../../images/icons/social/dark_bg/stumbleupon.png");
|
||||||
}
|
}
|
||||||
.technorati
|
.technorati
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/technorati.png");
|
background-image: url("../../images/icons/social/dark_bg/technorati.png");
|
||||||
}
|
}
|
||||||
.tumblr
|
.tumblr
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/tumblr.png");
|
background-image: url("../../images/icons/social/dark_bg/tumblr.png");
|
||||||
}
|
}
|
||||||
.twitter
|
.twitter
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/twitter.png");
|
background-image: url("../../images/icons/social/dark_bg/twitter.png");
|
||||||
}
|
}
|
||||||
.vimeo
|
.vimeo
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/vimeo.png");
|
background-image: url("../../images/icons/social/dark_bg/vimeo.png");
|
||||||
}
|
}
|
||||||
.wykop
|
.wykop
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/wykop.png");
|
background-image: url("../../images/icons/social/dark_bg/wykop.png");
|
||||||
}
|
}
|
||||||
.xing
|
.xing
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/xing.png");
|
background-image: url("../../images/icons/social/dark_bg/xing.png");
|
||||||
}
|
}
|
||||||
.youtube
|
.youtube
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dark_bg/youtube.png");
|
background-image: url("../../images/icons/social/dark_bg/youtube.png");
|
||||||
}
|
}
|
||||||
.light .behance
|
.light .behance
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/behance.png");
|
background-image: url("../../images/icons/social/behance.png");
|
||||||
}
|
}
|
||||||
.light .bing
|
.light .bing
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/bing.png");
|
background-image: url("../../images/icons/social/bing.png");
|
||||||
}
|
}
|
||||||
.light .blogger
|
.light .blogger
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/blogger.png");
|
background-image: url("../../images/icons/social/blogger.png");
|
||||||
}
|
}
|
||||||
.light .deezer
|
.light .deezer
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/deezer.png");
|
background-image: url("../../images/icons/social/deezer.png");
|
||||||
}
|
}
|
||||||
.light .designfloat
|
.light .designfloat
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/designfloat.png");
|
background-image: url("../../images/icons/social/designfloat.png");
|
||||||
}
|
}
|
||||||
.light .deviantart
|
.light .deviantart
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/deviantart.png");
|
background-image: url("../../images/icons/social/deviantart.png");
|
||||||
}
|
}
|
||||||
.light .digg
|
.light .digg
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/digg.png");
|
background-image: url("../../images/icons/social/digg.png");
|
||||||
}
|
}
|
||||||
.light .digg
|
.light .digg
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/digg.png");
|
background-image: url("../../images/icons/social/digg.png");
|
||||||
}
|
}
|
||||||
.light .dribbble
|
.light .dribbble
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/dribbble.png");
|
background-image: url("../../images/icons/social/dribbble.png");
|
||||||
}
|
}
|
||||||
.light .envato
|
.light .envato
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/envato.png");
|
background-image: url("../../images/icons/social/envato.png");
|
||||||
}
|
}
|
||||||
.light .facebook
|
.light .facebook
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/facebook.png");
|
background-image: url("../../images/icons/social/facebook.png");
|
||||||
}
|
}
|
||||||
.light .flickr
|
.light .flickr
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/flickr.png");
|
background-image: url("../../images/icons/social/flickr.png");
|
||||||
}
|
}
|
||||||
.light .form
|
.light .form
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/form.png");
|
background-image: url("../../images/icons/social/form.png");
|
||||||
}
|
}
|
||||||
.light .forrst
|
.light .forrst
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/forrst.png");
|
background-image: url("../../images/icons/social/forrst.png");
|
||||||
}
|
}
|
||||||
.light .foursquare
|
.light .foursquare
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/foursquare.png");
|
background-image: url("../../images/icons/social/foursquare.png");
|
||||||
}
|
}
|
||||||
.light .friendfeed
|
.light .friendfeed
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/friendfeed.png");
|
background-image: url("../../images/icons/social/friendfeed.png");
|
||||||
}
|
}
|
||||||
.light .googleplus
|
.light .googleplus
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/googleplus.png");
|
background-image: url("../../images/icons/social/googleplus.png");
|
||||||
}
|
}
|
||||||
.light .instagram
|
.light .instagram
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/instagram.png");
|
background-image: url("../../images/icons/social/instagram.png");
|
||||||
}
|
}
|
||||||
.light .linkedin
|
.light .linkedin
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/linkedin.png");
|
background-image: url("../../images/icons/social/linkedin.png");
|
||||||
}
|
}
|
||||||
.light .mail
|
.light .mail
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/mail.png");
|
background-image: url("../../images/icons/social/mail.png");
|
||||||
}
|
}
|
||||||
.light .mobile
|
.light .mobile
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/mobile.png");
|
background-image: url("../../images/icons/social/mobile.png");
|
||||||
}
|
}
|
||||||
.light .myspace
|
.light .myspace
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/myspace.png");
|
background-image: url("../../images/icons/social/myspace.png");
|
||||||
}
|
}
|
||||||
.light .picasa
|
.light .picasa
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/picasa.png");
|
background-image: url("../../images/icons/social/picasa.png");
|
||||||
}
|
}
|
||||||
.light .pinterest
|
.light .pinterest
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/pinterest.png");
|
background-image: url("../../images/icons/social/pinterest.png");
|
||||||
}
|
}
|
||||||
.light .reddit
|
.light .reddit
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/reddit.png");
|
background-image: url("../../images/icons/social/reddit.png");
|
||||||
}
|
}
|
||||||
.light .rss
|
.light .rss
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/rss.png");
|
background-image: url("../../images/icons/social/rss.png");
|
||||||
}
|
}
|
||||||
.light .skype
|
.light .skype
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/skype.png");
|
background-image: url("../../images/icons/social/skype.png");
|
||||||
}
|
}
|
||||||
.light .soundcloud
|
.light .soundcloud
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/soundcloud.png");
|
background-image: url("../../images/icons/social/soundcloud.png");
|
||||||
}
|
}
|
||||||
.light .spotify
|
.light .spotify
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/spotify.png");
|
background-image: url("../../images/icons/social/spotify.png");
|
||||||
}
|
}
|
||||||
.light .stumbleupon
|
.light .stumbleupon
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/stumbleupon.png");
|
background-image: url("../../images/icons/social/stumbleupon.png");
|
||||||
}
|
}
|
||||||
.light .technorati
|
.light .technorati
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/technorati.png");
|
background-image: url("../../images/icons/social/technorati.png");
|
||||||
}
|
}
|
||||||
.light .tumblr
|
.light .tumblr
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/tumblr.png");
|
background-image: url("../../images/icons/social/tumblr.png");
|
||||||
}
|
}
|
||||||
.light .twitter
|
.light .twitter
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/twitter.png");
|
background-image: url("../../images/icons/social/twitter.png");
|
||||||
}
|
}
|
||||||
.light .vimeo
|
.light .vimeo
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/vimeo.png");
|
background-image: url("../../images/icons/social/vimeo.png");
|
||||||
}
|
}
|
||||||
.light .wykop
|
.light .wykop
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/wykop.png");
|
background-image: url("../../images/icons/social/wykop.png");
|
||||||
}
|
}
|
||||||
.light .xing
|
.light .xing
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/xing.png");
|
background-image: url("../../images/icons/social/xing.png");
|
||||||
}
|
}
|
||||||
.light .youtube
|
.light .youtube
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/social/youtube.png");
|
background-image: url("../../images/icons/social/youtube.png");
|
||||||
}
|
}
|
||||||
.bread_crumb .separator
|
.bread_crumb .separator
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/breadcrumb_arrow.png");
|
background-image: url("../../images/icons/navigation/dark_bg/breadcrumb_arrow.png");
|
||||||
}
|
}
|
||||||
.accordion .ui-accordion-header .ui-accordion-header-icon
|
.accordion .ui-accordion-header .ui-accordion-header-icon
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/accordion_arrow_down.png");
|
background-image: url("../../images/icons/navigation/dark_bg/accordion_arrow_down.png");
|
||||||
}
|
}
|
||||||
/* --- menu --- */
|
/* --- menu --- */
|
||||||
.menu_container
|
.menu_container
|
||||||
@@ -721,7 +721,7 @@ li.detail.category
|
|||||||
.menu_container .sf-menu li.selected.submenu a,
|
.menu_container .sf-menu li.selected.submenu a,
|
||||||
.menu_container .sf-menu li.submenu:hover a
|
.menu_container .sf-menu li.submenu:hover a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/menu_arrow.png");
|
background-image: url("../../images/icons/navigation/dark_bg/menu_arrow.png");
|
||||||
}
|
}
|
||||||
.sf-menu a:hover,
|
.sf-menu a:hover,
|
||||||
.sf-menu a:hover
|
.sf-menu a:hover
|
||||||
4
public/css/old/font-awesome.min.css
vendored
Normal file
@@ -1,3 +1,3 @@
|
|||||||
@font-face{font-family:"Oswald"; font-style:normal; font-weight:400; src:local("Oswald Regular"),local("Oswald-Regular"),url("../fonts/Oswald-Regular-400.woff") format("woff")}
|
@font-face{font-family:"Oswald"; font-style:normal; font-weight:400; src:local("Oswald Regular"),local("Oswald-Regular"),url("../../fonts/Oswald-Regular-400.woff") format("woff")}
|
||||||
@font-face{font-family:"Varela"; font-style:normal; font-weight:400; src:local("Varela"),url("../fonts/Varela-400.woff") format("woff")}
|
@font-face{font-family:"Varela"; font-style:normal; font-weight:400; src:local("Varela"),url("../../fonts/Varela-400.woff") format("woff")}
|
||||||
@font-face{font-family:"Open Sans"; font-style:normal; font-weight:400; src:local("Open Sans"),local("OpenSans"),url("../fonts/OpenSans-400.woff") format("woff")}
|
@font-face{font-family:"Open Sans"; font-style:normal; font-weight:400; src:local("Open Sans"),local("OpenSans"),url("../../fonts/OpenSans-400.woff") format("woff")}
|
||||||
@@ -152,138 +152,138 @@ textarea.hint,
|
|||||||
}
|
}
|
||||||
.divider.subheader_arrow
|
.divider.subheader_arrow
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/high_contrast/subheader_arrow.png");
|
background-image: url("../../images/icons/other/high_contrast/subheader_arrow.png");
|
||||||
}
|
}
|
||||||
blockquote
|
blockquote
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/quote_content.png");
|
background-image: url("../../images/icons/other/dark_bg/quote_content.png");
|
||||||
}
|
}
|
||||||
.read_more .arrow
|
.read_more .arrow
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/call_to_action_arrow.png");
|
background-image: url("../../images/icons/navigation/high_contrast/call_to_action_arrow.png");
|
||||||
}
|
}
|
||||||
.slider_navigation .slider_control a,
|
.slider_navigation .slider_control a,
|
||||||
a.slider_control
|
a.slider_control
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_right.png");
|
background-image: url("../../images/icons/navigation/high_contrast/navigation_arrow_right.png");
|
||||||
background-color: #FFDD00;
|
background-color: #FFDD00;
|
||||||
}
|
}
|
||||||
.slider_navigation .slider_control:first-child a,
|
.slider_navigation .slider_control:first-child a,
|
||||||
a.slider_control.left
|
a.slider_control.left
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_left.png");
|
background-image: url("../../images/icons/navigation/high_contrast/navigation_arrow_left.png");
|
||||||
}
|
}
|
||||||
.pagination li.left a
|
.pagination li.left a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/pagination_arrow_left.png");
|
background-image: url("../../images/icons/navigation/high_contrast/pagination_arrow_left.png");
|
||||||
}
|
}
|
||||||
.pagination li.right a
|
.pagination li.right a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/pagination_arrow_right.png");
|
background-image: url("../../images/icons/navigation/high_contrast/pagination_arrow_right.png");
|
||||||
}
|
}
|
||||||
a.slider_control.up
|
a.slider_control.up
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_up.png");
|
background-image: url("../../images/icons/navigation/high_contrast/navigation_arrow_up.png");
|
||||||
}
|
}
|
||||||
a.slider_control.down
|
a.slider_control.down
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_down.png");
|
background-image: url("../../images/icons/navigation/high_contrast/navigation_arrow_down.png");
|
||||||
}
|
}
|
||||||
#comments_list .children .comment .parent_arrow
|
#comments_list .children .comment .parent_arrow
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/dark_bg/comment_reply.png");
|
background-image: url("../../images/icons/other/dark_bg/comment_reply.png");
|
||||||
}
|
}
|
||||||
.accordion .ui-accordion-header:hover .ui-accordion-header-icon
|
.accordion .ui-accordion-header:hover .ui-accordion-header-icon
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/accordion_arrow_down_hover.png");
|
background-image: url("../../images/icons/navigation/high_contrast/accordion_arrow_down_hover.png");
|
||||||
}
|
}
|
||||||
.accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon
|
.accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/high_contrast/accordion_arrow_up.png");
|
background-image: url("../../images/icons/navigation/high_contrast/accordion_arrow_up.png");
|
||||||
}
|
}
|
||||||
.item_content .not_found
|
.item_content .not_found
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/high_contrast/404.png");
|
background-image: url("../../images/icons/other/high_contrast/404.png");
|
||||||
}
|
}
|
||||||
.app
|
.app
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/app.png");
|
background-image: url("../../images/icons/features/high_contrast/app.png");
|
||||||
}
|
}
|
||||||
.calendar
|
.calendar
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/calendar.png");
|
background-image: url("../../images/icons/features/high_contrast/calendar.png");
|
||||||
}
|
}
|
||||||
.chart
|
.chart
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/chart.png");
|
background-image: url("../../images/icons/features/high_contrast/chart.png");
|
||||||
}
|
}
|
||||||
.chat
|
.chat
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/chat.png");
|
background-image: url("../../images/icons/features/high_contrast/chat.png");
|
||||||
}
|
}
|
||||||
.clock
|
.clock
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/clock.png");
|
background-image: url("../../images/icons/features/high_contrast/clock.png");
|
||||||
}
|
}
|
||||||
.database
|
.database
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/database.png");
|
background-image: url("../../images/icons/features/high_contrast/database.png");
|
||||||
}
|
}
|
||||||
.document
|
.document
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/document.png");
|
background-image: url("../../images/icons/features/high_contrast/document.png");
|
||||||
}
|
}
|
||||||
.envelope
|
.envelope
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/envelope.png");
|
background-image: url("../../images/icons/features/high_contrast/envelope.png");
|
||||||
}
|
}
|
||||||
.faq
|
.faq
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/faq.png");
|
background-image: url("../../images/icons/features/high_contrast/faq.png");
|
||||||
}
|
}
|
||||||
.graph
|
.graph
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/graph.png");
|
background-image: url("../../images/icons/features/high_contrast/graph.png");
|
||||||
}
|
}
|
||||||
.image
|
.image
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/image.png");
|
background-image: url("../../images/icons/features/high_contrast/image.png");
|
||||||
}
|
}
|
||||||
.laptop
|
.laptop
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/laptop.png");
|
background-image: url("../../images/icons/features/high_contrast/laptop.png");
|
||||||
}
|
}
|
||||||
.magnifier
|
.magnifier
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/magnifier.png");
|
background-image: url("../../images/icons/features/high_contrast/magnifier.png");
|
||||||
}
|
}
|
||||||
.features_icon.mobile
|
.features_icon.mobile
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/mobile.png");
|
background-image: url("../../images/icons/features/high_contrast/mobile.png");
|
||||||
}
|
}
|
||||||
.pin
|
.pin
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/pin.png");
|
background-image: url("../../images/icons/features/high_contrast/pin.png");
|
||||||
}
|
}
|
||||||
.printer
|
.printer
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/printer.png");
|
background-image: url("../../images/icons/features/high_contrast/printer.png");
|
||||||
}
|
}
|
||||||
.quote
|
.quote
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/quote.png");
|
background-image: url("../../images/icons/features/high_contrast/quote.png");
|
||||||
}
|
}
|
||||||
.screen
|
.screen
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/screen.png");
|
background-image: url("../../images/icons/features/high_contrast/screen.png");
|
||||||
}
|
}
|
||||||
.speaker
|
.speaker
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/speaker.png");
|
background-image: url("../../images/icons/features/high_contrast/speaker.png");
|
||||||
}
|
}
|
||||||
.video
|
.video
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/features/high_contrast/video.png");
|
background-image: url("../../images/icons/features/high_contrast/video.png");
|
||||||
}
|
}
|
||||||
/* --- menu --- */
|
/* --- menu --- */
|
||||||
.menu_container.sticky.move,
|
.menu_container.sticky.move,
|
||||||
@@ -332,11 +332,11 @@ a.slider_control.down
|
|||||||
}
|
}
|
||||||
.font_selector .increase
|
.font_selector .increase
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/high_contrast/font_increase.png");
|
background-image: url("../../images/icons/other/high_contrast/font_increase.png");
|
||||||
}
|
}
|
||||||
.font_selector .decrease
|
.font_selector .decrease
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/other/high_contrast/font_decrease.png");
|
background-image: url("../../images/icons/other/high_contrast/font_decrease.png");
|
||||||
}
|
}
|
||||||
/* --- aminations --- */
|
/* --- aminations --- */
|
||||||
.slideRightBack, .slideLeftBack, .slideDownBack, .slideUpBack
|
.slideRightBack, .slideLeftBack, .slideDownBack, .slideUpBack
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 718 B After Width: | Height: | Size: 718 B |
@@ -22,7 +22,7 @@
|
|||||||
.style_7 .sf-menu li.selected.submenu a,
|
.style_7 .sf-menu li.selected.submenu a,
|
||||||
.style_7 .sf-menu li.submenu:hover a
|
.style_7 .sf-menu li.submenu:hover a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/menu_arrow.png");
|
background-image: url("../../images/icons/navigation/menu_arrow.png");
|
||||||
}
|
}
|
||||||
.style_2 .sf-menu a:hover,
|
.style_2 .sf-menu a:hover,
|
||||||
.style_3 .sf-menu a:hover
|
.style_3 .sf-menu a:hover
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
.style_10 .sf-menu li.selected.submenu a,
|
.style_10 .sf-menu li.selected.submenu a,
|
||||||
.style_10 .sf-menu li.submenu:hover a
|
.style_10 .sf-menu li.submenu:hover a
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigation/dark_bg/menu_arrow.png");
|
background-image: url("../../images/icons/navigation/dark_bg/menu_arrow.png");
|
||||||
}
|
}
|
||||||
.style_2 .sf-menu li.selected a,
|
.style_2 .sf-menu li.selected a,
|
||||||
.style_2 .sf-menu li:hover a,
|
.style_2 .sf-menu li:hover a,
|
||||||
@@ -67,7 +67,7 @@ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header_container {
|
.header_container {
|
||||||
background-image: url('../images/nh-banner.png');
|
background-image: url('../../images/nh-banner.png');
|
||||||
background-size: 100% ;
|
background-size: 100% ;
|
||||||
}
|
}
|
||||||
|
|
||||||
1
public/css/old/noordholland.min.css
vendored
Normal file
|
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
|
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 948 B |
4155
public/css/old/style.css
vendored
Normal file
7
public/css/old/style.css.map
Normal file
4313
public/css/style.css
vendored
91
public/css/style.css.old
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
|
||||||
|
.site_container {
|
||||||
|
max-width: 1440px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.header {
|
||||||
|
height: 110px;
|
||||||
|
}
|
||||||
|
.header .logo {
|
||||||
|
margin-left: 135px;
|
||||||
|
}
|
||||||
|
.header .logo img {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
|
.menu_container {
|
||||||
|
height: 75px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
background-image: linear-gradient(to right, #0102b0, #4090e3);
|
||||||
|
}
|
||||||
|
.top_menu_container {
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
.menu_container .menu {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
.menu_container .menu li {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.menu_container .menu li ul {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.menu_container .menu li a {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
padding: 5px 20px 5px 40px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.menu_container .menu li.selected a,.menu_container .menu li:hover a {
|
||||||
|
color: white;
|
||||||
|
background: transparent;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.menu_container .menu li.selected a:before, .menu_container .menu li:hover a:before {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 33px;
|
||||||
|
height: 25px;
|
||||||
|
background-image: URL('/images/menu-corner-1.svg');
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.menu_container .menu li.selected a:after, .menu_container .menu li:hover a:after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 10px;
|
||||||
|
height: 12px;
|
||||||
|
background-image: URL('/images/menu-corner-2.svg');
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: -1px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.menu_container .menu li:first-child {
|
||||||
|
width: 135px;
|
||||||
|
display: block;
|
||||||
|
background: white;
|
||||||
|
height: 25px;
|
||||||
|
}
|
||||||
|
div ul li:last-child {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
div ul li:last-child:after {
|
||||||
|
content: '\a0';
|
||||||
|
z-index: -1;
|
||||||
|
background: white;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin-left: -10px;
|
||||||
|
}
|
||||||
BIN
public/images/menu-corner-1.png
Normal file
|
After Width: | Height: | Size: 491 B |
64
public/images/menu-corner-1.svg
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="34"
|
||||||
|
height="26"
|
||||||
|
viewBox="0 0 8.9958332 6.8791669"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
||||||
|
sodipodi:docname="menu-corner-1.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="31.678384"
|
||||||
|
inkscape:cx="9.4317006"
|
||||||
|
inkscape:cy="12.355444"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1361"
|
||||||
|
inkscape:window-x="2551"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Laag 2"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 0,9.0917965e-6 C 2.8799113,0.27686232 3.5863216,2.3699288 4.9695427,3.897441 6.4170886,5.942146 7.6749074,6.5222346 8.9958332,6.8791756 H 0 Z"
|
||||||
|
id="path5672"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
BIN
public/images/menu-corner-2.png
Normal file
|
After Width: | Height: | Size: 223 B |
63
public/images/menu-corner-2.svg
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="10"
|
||||||
|
height="12"
|
||||||
|
viewBox="0 0 2.6458333 3.1750001"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5680"
|
||||||
|
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
||||||
|
sodipodi:docname="menu-corner-2.svg">
|
||||||
|
<defs
|
||||||
|
id="defs5674" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="89.6"
|
||||||
|
inkscape:cx="6.9181539"
|
||||||
|
inkscape:cy="6.1002975"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer5"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1361"
|
||||||
|
inkscape:window-x="2551"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5677">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer5"
|
||||||
|
inkscape:label="Laag 3">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 2.6458332,4.7683716e-8 2.4893276,0.00354351 C 2.4502737,0.9722502 2.061771,2.350913 -0.00295294,2.9417179 L 0,3.1749894 2.6458332,3.175 Z"
|
||||||
|
id="path6274"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
2
public/js/jquery-3.7.1.min.js
vendored
Normal file
1
resources/assets/sass/abstracts/_fonts.scss
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
|
||||||
1
resources/assets/sass/abstracts/_index.scss
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
@forward 'variables';
|
||||||
@@ -36,3 +36,8 @@ $input-color-placeholder: lighten($text-color, 30%);
|
|||||||
|
|
||||||
// Panels
|
// Panels
|
||||||
$panel-default-heading-bg: #fff;
|
$panel-default-heading-bg: #fff;
|
||||||
|
|
||||||
|
// Nav
|
||||||
|
$nav-text-color: #1a1a1a;
|
||||||
|
$nav-text-weight: bold;
|
||||||
|
$nav-text-size: 14px;
|
||||||
4
resources/assets/sass/app.scss
vendored
@@ -3,7 +3,7 @@
|
|||||||
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||||
|
|
||||||
// Variables
|
// Variables
|
||||||
@import "variables";
|
@import "abstracts/variables";
|
||||||
|
|
||||||
// Bootstrap
|
// Bootstrap
|
||||||
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
|
//@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
|
||||||
|
|||||||